diff options
author | Marc Alexander <admin@m-a-styles.de> | 2014-02-17 16:28:36 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2014-02-17 16:28:36 +0100 |
commit | f1c913f1762e8854ba98b0b810a5a984263a06cb (patch) | |
tree | a9aac3d0dbe988b2f3073c130286276b7fbd6e2a /phpBB/includes | |
parent | 3cb702f4ab66f21b267d51f2402a9bd5ef7f97e1 (diff) | |
download | forums-f1c913f1762e8854ba98b0b810a5a984263a06cb.tar forums-f1c913f1762e8854ba98b0b810a5a984263a06cb.tar.gz forums-f1c913f1762e8854ba98b0b810a5a984263a06cb.tar.bz2 forums-f1c913f1762e8854ba98b0b810a5a984263a06cb.tar.xz forums-f1c913f1762e8854ba98b0b810a5a984263a06cb.zip |
[ticket/12183] Move user_newpasswd, user_actkey below user_pass_convert
PHPBB3-12183
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/db/schema_data.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/db/schema_data.php b/phpBB/includes/db/schema_data.php index 1373d5fa96..0d8ee6a648 100644 --- a/phpBB/includes/db/schema_data.php +++ b/phpBB/includes/db/schema_data.php @@ -1117,6 +1117,8 @@ $schema_data['phpbb_users'] = array( 'user_password' => array('VCHAR_UNI', ''), 'user_passchg' => array('TIMESTAMP', 0), 'user_pass_convert' => array('BOOL', 0), + 'user_actkey' => array('VCHAR:32', ''), + 'user_newpasswd' => array('VCHAR_UNI', ''), 'user_email' => array('VCHAR_UNI:100', ''), 'user_email_hash' => array('BINT', 0), 'user_birthday' => array('VCHAR:10', ''), @@ -1172,8 +1174,6 @@ $schema_data['phpbb_users'] = array( 'user_msnm' => array('VCHAR_UNI', ''), 'user_jabber' => array('VCHAR_UNI', ''), 'user_website' => array('VCHAR_UNI:200', ''), - 'user_actkey' => array('VCHAR:32', ''), - 'user_newpasswd' => array('VCHAR_UNI', ''), 'user_form_salt' => array('VCHAR_UNI:32', ''), 'user_new' => array('BOOL', 1), 'user_reminded' => array('TINT:4', 0), |