diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-12-14 18:19:20 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-12-14 18:19:20 +0000 |
commit | 0aa7d08106a55232e9ca1846d9478941482b9531 (patch) | |
tree | 4243aa56251ec2035eae9ccb4738bc542435a732 /phpBB/db | |
parent | a552d5b7d583dd4ce648885c2a4fad9f7f197bcc (diff) | |
download | forums-0aa7d08106a55232e9ca1846d9478941482b9531.tar forums-0aa7d08106a55232e9ca1846d9478941482b9531.tar.gz forums-0aa7d08106a55232e9ca1846d9478941482b9531.tar.bz2 forums-0aa7d08106a55232e9ca1846d9478941482b9531.tar.xz forums-0aa7d08106a55232e9ca1846d9478941482b9531.zip |
Make topic_moved_id not null default 0
git-svn-id: file:///svn/phpbb/trunk@1572 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/db')
-rw-r--r-- | phpBB/db/schemas/postgres_schema.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/db/schemas/postgres_schema.sql b/phpBB/db/schemas/postgres_schema.sql index dcaa6bb1de..72371e2733 100644 --- a/phpBB/db/schemas/postgres_schema.sql +++ b/phpBB/db/schemas/postgres_schema.sql @@ -402,7 +402,7 @@ CREATE TABLE phpbb_topics ( topic_status int2 DEFAULT '0' NOT NULL, topic_vote int2 DEFAULT '0' NOT NULL, topic_type int2 DEFAULT '0' NOT NULL, - topic_moved_id int4, + topic_moved_id DEFAULT '0' NOT NULL int4, topic_last_post_id int4 DEFAULT '0' NOT NULL, CONSTRAINT phpbb_topics_pkey PRIMARY KEY (topic_id) ); |