1
0
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:
Meik Sievertsen
2009-06-23 08:09:54 +00:00
parent b1584a8d5c
commit 926640fc75
7 changed files with 19 additions and 5 deletions

View File

@@ -276,6 +276,7 @@ CREATE TABLE phpbb_confirm (
confirm_type INT2 DEFAULT '0' NOT NULL,
code varchar(8) DEFAULT '' NOT NULL,
seed INT4 DEFAULT '0' NOT NULL CHECK (seed >= 0),
attempts INT4 DEFAULT '0' NOT NULL CHECK (attempts >= 0),
PRIMARY KEY (session_id, confirm_id)
);
@@ -1228,6 +1229,7 @@ CREATE TABLE phpbb_users (
user_actkey varchar(32) DEFAULT '' NOT NULL,
user_newpasswd varchar(40) DEFAULT '' NOT NULL,
user_form_salt varchar(32) DEFAULT '' NOT NULL,
user_new INT2 DEFAULT '1' NOT NULL CHECK (user_new >= 0),
PRIMARY KEY (user_id)
);