diff options
author | Marc Alexander <admin@m-a-styles.de> | 2013-06-17 23:04:22 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2013-09-14 13:53:14 +0200 |
commit | dae4327cfcd0908dc751f47cbbc462df454d153c (patch) | |
tree | 438a6768d998e89cba6907ac9aeb313656d57507 /phpBB/develop/create_schema_files.php | |
parent | 4b81b93d102b1657ab59cbc98cfa5c1d66d94304 (diff) | |
download | forums-dae4327cfcd0908dc751f47cbbc462df454d153c.tar forums-dae4327cfcd0908dc751f47cbbc462df454d153c.tar.gz forums-dae4327cfcd0908dc751f47cbbc462df454d153c.tar.bz2 forums-dae4327cfcd0908dc751f47cbbc462df454d153c.tar.xz forums-dae4327cfcd0908dc751f47cbbc462df454d153c.zip |
[feature/passwords] Add schema changes for new hash types
PHPBB3-11610
Diffstat (limited to 'phpBB/develop/create_schema_files.php')
-rw-r--r-- | phpBB/develop/create_schema_files.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/develop/create_schema_files.php b/phpBB/develop/create_schema_files.php index 316fbe19e6..91201e7a9d 100644 --- a/phpBB/develop/create_schema_files.php +++ b/phpBB/develop/create_schema_files.php @@ -1862,7 +1862,7 @@ function get_schema_struct() 'user_regdate' => array('TIMESTAMP', 0), 'username' => array('VCHAR_CI', ''), 'username_clean' => array('VCHAR_CI', ''), - 'user_password' => array('VCHAR_UNI:40', ''), + 'user_password' => array('VCHAR_CI', ''), 'user_passchg' => array('TIMESTAMP', 0), 'user_pass_convert' => array('BOOL', 0), 'user_email' => array('VCHAR_UNI:100', ''), |