diff options
Diffstat (limited to 'phpBB/db/mysql_schema.sql')
-rw-r--r-- | phpBB/db/mysql_schema.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/db/mysql_schema.sql b/phpBB/db/mysql_schema.sql index 289dbfb01c..e3a2dfb89d 100644 --- a/phpBB/db/mysql_schema.sql +++ b/phpBB/db/mysql_schema.sql @@ -46,6 +46,7 @@ CREATE TABLE phpbb_config ( allow_bbcode tinyint(3), allow_sig tinyint(3), allow_namechange tinyint(3), + require_activation tinyint(3), selected int(2) DEFAULT '0' NOT NULL, posts_per_page int(10), hot_threshold int(10), @@ -54,6 +55,7 @@ CREATE TABLE phpbb_config ( override_themes tinyint(3), email_sig varchar(255), email_from varchar(100), + system_timezone varchar(4), default_lang varchar(255), PRIMARY KEY (config_id), UNIQUE selected (selected) @@ -298,6 +300,8 @@ CREATE TABLE phpbb_users ( user_rank int(10) DEFAULT '0', user_level int(10) DEFAULT '1', user_lang varchar(255), + user_timezone varchar(4), + user_active tinyint(3), user_actkey varchar(32), user_newpasswd varchar(32), user_notify tinyint(3), |