aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/db/mysql_schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/db/mysql_schema.sql')
-rw-r--r--phpBB/db/mysql_schema.sql4
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/db/mysql_schema.sql b/phpBB/db/mysql_schema.sql
index 599b9e263a..dd6e6811a8 100644
--- a/phpBB/db/mysql_schema.sql
+++ b/phpBB/db/mysql_schema.sql
@@ -467,7 +467,9 @@ CREATE TABLE phpbb_users (
user_attachsig tinyint(1),
user_allowhtml tinyint(1),
user_allowbbcode tinyint(1),
- user_allowsmile tinyint(1),
+ user_allowsmile tinyint(1),
+ user_allow_pm tinyint(1) DEFAULT '1' NOT NULL,
+ user_notify_pm tinyint(1) DEFAULT '1' NOT NULL,
user_regdate int(11) DEFAULT '0' NOT NULL,
user_rank int(11) DEFAULT '0',
user_avatar varchar(100),