aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/mysql_40_schema.sql
diff options
context:
space:
mode:
authorHenry Sudhof <kellanved@phpbb.com>2009-08-03 15:46:56 +0000
committerHenry Sudhof <kellanved@phpbb.com>2009-08-03 15:46:56 +0000
commit1f871950d8bbefe59e18c00ea3238591c0b73807 (patch)
treec6b5d1127658d68ebed7fa17183c2795a13d40c8 /phpBB/install/schemas/mysql_40_schema.sql
parentd376811e7faf1f947645c9bfedd235c6ae9e3227 (diff)
downloadforums-1f871950d8bbefe59e18c00ea3238591c0b73807.tar
forums-1f871950d8bbefe59e18c00ea3238591c0b73807.tar.gz
forums-1f871950d8bbefe59e18c00ea3238591c0b73807.tar.bz2
forums-1f871950d8bbefe59e18c00ea3238591c0b73807.tar.xz
forums-1f871950d8bbefe59e18c00ea3238591c0b73807.zip
#48985
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9916 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/schemas/mysql_40_schema.sql')
-rw-r--r--phpBB/install/schemas/mysql_40_schema.sql3
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/install/schemas/mysql_40_schema.sql b/phpBB/install/schemas/mysql_40_schema.sql
index 5934d2d173..7b506f5a75 100644
--- a/phpBB/install/schemas/mysql_40_schema.sql
+++ b/phpBB/install/schemas/mysql_40_schema.sql
@@ -554,6 +554,7 @@ CREATE TABLE phpbb_profile_fields (
field_validation varbinary(60) DEFAULT '' NOT NULL,
field_required tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,
field_show_on_reg tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,
+ field_show_on_vt tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,
field_show_profile tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,
field_hide tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,
field_no_view tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,
@@ -971,6 +972,8 @@ CREATE TABLE phpbb_users (
user_newpasswd varbinary(120) DEFAULT '' NOT NULL,
user_form_salt varbinary(96) DEFAULT '' NOT NULL,
user_new tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
+ user_reminded tinyint(4) DEFAULT '0' NOT NULL,
+ user_reminded_time int(11) UNSIGNED DEFAULT '0' NOT NULL,
PRIMARY KEY (user_id),
KEY user_birthday (user_birthday),
KEY user_email_hash (user_email_hash),