aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/postgres_schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/install/schemas/postgres_schema.sql')
-rw-r--r--phpBB/install/schemas/postgres_schema.sql7
1 files changed, 6 insertions, 1 deletions
diff --git a/phpBB/install/schemas/postgres_schema.sql b/phpBB/install/schemas/postgres_schema.sql
index d656f2968d..0de7a6421a 100644
--- a/phpBB/install/schemas/postgres_schema.sql
+++ b/phpBB/install/schemas/postgres_schema.sql
@@ -1165,7 +1165,12 @@ CREATE TABLE phpbb_users (
user_emailtime INT4 DEFAULT '0' NOT NULL,
user_sortby_type varchar(1) DEFAULT '' NOT NULL,
user_sortby_dir varchar(1) DEFAULT '' NOT NULL,
- user_show_days INT2 DEFAULT '' NOT NULL,
+ user_topic_show_days INT4 DEFAULT '0' NOT NULL,
+ user_topic_sortby_type varchar(1) DEFAULT '' NOT NULL,
+ user_topic_sortby_dir varchar(1) DEFAULT '' NOT NULL,
+ user_post_show_days INT4 DEFAULT '0' NOT NULL,
+ user_post_sortby_type varchar(1) DEFAULT '' NOT NULL,
+ user_post_sortby_dir varchar(1) DEFAULT '' NOT NULL,
user_notify INT2 DEFAULT '0' NOT NULL,
user_notify_pm INT2 DEFAULT '1' NOT NULL,
user_notify_type INT2 DEFAULT '0' NOT NULL,