mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-08 08:35:31 +02:00
Ok, fixing a PostgreSQL bug in the Schema file, prevented install
git-svn-id: file:///svn/phpbb/trunk@1577 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
96996b2993
commit
652a03df3f
@ -304,7 +304,7 @@ CREATE TABLE phpbb_smilies (
|
|||||||
CREATE TABLE phpbb_themes (
|
CREATE TABLE phpbb_themes (
|
||||||
themes_id int4 DEFAULT nextval('phpbb_themes_id_seq'::text) NOT NULL,
|
themes_id int4 DEFAULT nextval('phpbb_themes_id_seq'::text) NOT NULL,
|
||||||
style_name varchar(30),
|
style_name varchar(30),
|
||||||
template_name varchar(30) NOT NULL default '',
|
template_name varchar(30) NOT NULL DEFAULT '',
|
||||||
head_stylesheet varchar(100),
|
head_stylesheet varchar(100),
|
||||||
body_background varchar(100),
|
body_background varchar(100),
|
||||||
body_bgcolor char(6),
|
body_bgcolor char(6),
|
||||||
@ -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 DEFAULT '0' NOT NULL int4,
|
topic_moved_id int4 DEFAULT '0' NOT NULL,
|
||||||
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…
x
Reference in New Issue
Block a user