diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2005-10-03 21:52:56 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2005-10-03 21:52:56 +0000 |
commit | 9f6864cd0c95719f35bced2383cf1df72d5a2a9c (patch) | |
tree | 3cdb17d6b579a0af65e8a318310a4af7e31e218d /phpBB/install/schemas/postgres_schema.sql | |
parent | 9439a3f49a0c528782ed9e7d34aee4770e07bdc2 (diff) | |
download | forums-9f6864cd0c95719f35bced2383cf1df72d5a2a9c.tar forums-9f6864cd0c95719f35bced2383cf1df72d5a2a9c.tar.gz forums-9f6864cd0c95719f35bced2383cf1df72d5a2a9c.tar.bz2 forums-9f6864cd0c95719f35bced2383cf1df72d5a2a9c.tar.xz forums-9f6864cd0c95719f35bced2383cf1df72d5a2a9c.zip |
okok, maybe assigning a default ordering is not that bad. harhar
git-svn-id: file:///svn/phpbb/trunk@5251 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/schemas/postgres_schema.sql')
-rw-r--r-- | phpBB/install/schemas/postgres_schema.sql | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/install/schemas/postgres_schema.sql b/phpBB/install/schemas/postgres_schema.sql index 3f22b3af0b..0248852182 100644 --- a/phpBB/install/schemas/postgres_schema.sql +++ b/phpBB/install/schemas/postgres_schema.sql @@ -1165,11 +1165,11 @@ CREATE TABLE phpbb_users ( user_sortby_type varchar(1) DEFAULT '' NOT NULL, user_sortby_dir varchar(1) 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_topic_sortby_type varchar(1) DEFAULT 't' NOT NULL, + user_topic_sortby_dir varchar(1) DEFAULT 'd' 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_post_sortby_type varchar(1) DEFAULT 't' NOT NULL, + user_post_sortby_dir varchar(1) DEFAULT 'a' 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, |