mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Make topic_moved_id not null default 0
git-svn-id: file:///svn/phpbb/trunk@1572 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
a552d5b7d5
commit
0aa7d08106
1 changed files with 1 additions and 1 deletions
|
@ -402,7 +402,7 @@ CREATE TABLE phpbb_topics (
|
||||||
topic_status int2 DEFAULT '0' NOT NULL,
|
topic_status int2 DEFAULT '0' NOT NULL,
|
||||||
topic_vote int2 DEFAULT '0' NOT NULL,
|
topic_vote int2 DEFAULT '0' NOT NULL,
|
||||||
topic_type 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,
|
topic_last_post_id int4 DEFAULT '0' NOT NULL,
|
||||||
CONSTRAINT phpbb_topics_pkey PRIMARY KEY (topic_id)
|
CONSTRAINT phpbb_topics_pkey PRIMARY KEY (topic_id)
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue