From 0aa7d08106a55232e9ca1846d9478941482b9531 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Fri, 14 Dec 2001 18:19:20 +0000 Subject: [PATCH] Make topic_moved_id not null default 0 git-svn-id: file:///svn/phpbb/trunk@1572 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/db/schemas/postgres_schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) );