mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 14:00:31 +02:00
add missing user_new field to schema (just forgot to create it)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9655 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -163,6 +163,7 @@ CREATE TABLE phpbb_confirm (
|
||||
confirm_type tinyint(3) DEFAULT '0' NOT NULL,
|
||||
code varbinary(8) DEFAULT '' NOT NULL,
|
||||
seed int(10) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
attempts mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
PRIMARY KEY (session_id, confirm_id),
|
||||
KEY confirm_type (confirm_type)
|
||||
);
|
||||
@@ -965,6 +966,7 @@ CREATE TABLE phpbb_users (
|
||||
user_actkey varbinary(32) DEFAULT '' NOT NULL,
|
||||
user_newpasswd varbinary(120) DEFAULT '' NOT NULL,
|
||||
user_form_salt varbinary(96) DEFAULT '' NOT NULL,
|
||||
user_new tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
PRIMARY KEY (user_id),
|
||||
KEY user_birthday (user_birthday),
|
||||
KEY user_email_hash (user_email_hash),
|
||||
|
Reference in New Issue
Block a user