mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-05 15:16:16 +02:00
[feature/passwords] Use VCHAR_UNI instead of VCHAR_CI for user_passwords
PHPBB3-11610
This commit is contained in:
parent
1d57ec1f65
commit
0f64843ac8
@ -1112,7 +1112,7 @@ $schema_data['phpbb_users'] = array(
|
||||
'user_regdate' => array('TIMESTAMP', 0),
|
||||
'username' => array('VCHAR_CI', ''),
|
||||
'username_clean' => array('VCHAR_CI', ''),
|
||||
'user_password' => array('VCHAR_CI', ''),
|
||||
'user_password' => array('VCHAR_UNI', ''),
|
||||
'user_passchg' => array('TIMESTAMP', 0),
|
||||
'user_pass_convert' => array('BOOL', 0),
|
||||
'user_email' => array('VCHAR_UNI:100', ''),
|
||||
|
@ -1246,7 +1246,7 @@ CREATE TABLE phpbb_users (
|
||||
user_regdate INT4 DEFAULT '0' NOT NULL CHECK (user_regdate >= 0),
|
||||
username varchar_ci DEFAULT '' NOT NULL,
|
||||
username_clean varchar_ci DEFAULT '' NOT NULL,
|
||||
user_password varchar_ci DEFAULT '' NOT NULL,
|
||||
user_password varchar(255) DEFAULT '' NOT NULL,
|
||||
user_passchg INT4 DEFAULT '0' NOT NULL CHECK (user_passchg >= 0),
|
||||
user_pass_convert INT2 DEFAULT '0' NOT NULL CHECK (user_pass_convert >= 0),
|
||||
user_email varchar(100) DEFAULT '' NOT NULL,
|
||||
|
Loading…
x
Reference in New Issue
Block a user