aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordougk_ff7 <dougk_ff7@users.sourceforge.net>2001-12-15 01:22:55 +0000
committerdougk_ff7 <dougk_ff7@users.sourceforge.net>2001-12-15 01:22:55 +0000
commit652a03df3f5d461b4bcbc4a61b2faff355ddc09e (patch)
treebdce6e2603ec3e75529d95408b8d9258b55d3008
parent96996b2993be53ca3d13375399b0a588d17cacfc (diff)
downloadforums-652a03df3f5d461b4bcbc4a61b2faff355ddc09e.tar
forums-652a03df3f5d461b4bcbc4a61b2faff355ddc09e.tar.gz
forums-652a03df3f5d461b4bcbc4a61b2faff355ddc09e.tar.bz2
forums-652a03df3f5d461b4bcbc4a61b2faff355ddc09e.tar.xz
forums-652a03df3f5d461b4bcbc4a61b2faff355ddc09e.zip
Ok, fixing a PostgreSQL bug in the Schema file, prevented install
git-svn-id: file:///svn/phpbb/trunk@1577 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/db/schemas/postgres_schema.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/db/schemas/postgres_schema.sql b/phpBB/db/schemas/postgres_schema.sql
index 72371e2733..9c56c72479 100644
--- a/phpBB/db/schemas/postgres_schema.sql
+++ b/phpBB/db/schemas/postgres_schema.sql
@@ -304,7 +304,7 @@ CREATE TABLE phpbb_smilies (
CREATE TABLE phpbb_themes (
themes_id int4 DEFAULT nextval('phpbb_themes_id_seq'::text) NOT NULL,
style_name varchar(30),
- template_name varchar(30) NOT NULL default '',
+ template_name varchar(30) NOT NULL DEFAULT '',
head_stylesheet varchar(100),
body_background varchar(100),
body_bgcolor char(6),
@@ -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 DEFAULT '0' NOT NULL int4,
+ topic_moved_id int4 DEFAULT '0' NOT NULL,
topic_last_post_id int4 DEFAULT '0' NOT NULL,
CONSTRAINT phpbb_topics_pkey PRIMARY KEY (topic_id)
);