|
From: Paul S. O. <ps...@us...> - 2001-12-14 18:19:23
|
Update of /cvsroot/phpbb/phpBB2/db/schemas
In directory usw-pr-cvs1:/tmp/cvs-serv14275/db/schemas
Modified Files:
postgres_schema.sql
Log Message:
Make topic_moved_id not null default 0
Index: postgres_schema.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/schemas/postgres_schema.sql,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** postgres_schema.sql 2001/12/14 16:32:32 1.8
--- postgres_schema.sql 2001/12/14 18:19:20 1.9
***************
*** 403,407 ****
topic_vote int2 DEFAULT '0' NOT NULL,
topic_type int2 DEFAULT '0' NOT NULL,
! topic_moved_id int4,
topic_last_post_id int4 DEFAULT '0' NOT NULL,
CONSTRAINT phpbb_topics_pkey PRIMARY KEY (topic_id)
--- 403,407 ----
topic_vote int2 DEFAULT '0' NOT NULL,
topic_type int2 DEFAULT '0' NOT NULL,
! 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)
|