aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/db/schemas/postgres_schema.sql
diff options
context:
space:
mode:
authorJames Atkinson <thefinn@users.sourceforge.net>2001-11-26 03:02:41 +0000
committerJames Atkinson <thefinn@users.sourceforge.net>2001-11-26 03:02:41 +0000
commit74a9b88c06ace02c99d44d2e11ed8574505d6926 (patch)
tree53c35442325d9553f8b56e308df87a56c921b4ab /phpBB/db/schemas/postgres_schema.sql
parentc35963cb76ef5173a0d54de9ce71cbdc97d6ccda (diff)
downloadforums-74a9b88c06ace02c99d44d2e11ed8574505d6926.tar
forums-74a9b88c06ace02c99d44d2e11ed8574505d6926.tar.gz
forums-74a9b88c06ace02c99d44d2e11ed8574505d6926.tar.bz2
forums-74a9b88c06ace02c99d44d2e11ed8574505d6926.tar.xz
forums-74a9b88c06ace02c99d44d2e11ed8574505d6926.zip
Fixed little sequance name problem
git-svn-id: file:///svn/phpbb/trunk@1447 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/db/schemas/postgres_schema.sql')
-rw-r--r--phpBB/db/schemas/postgres_schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/db/schemas/postgres_schema.sql b/phpBB/db/schemas/postgres_schema.sql
index a4a2798d08..ba926a2cf3 100644
--- a/phpBB/db/schemas/postgres_schema.sql
+++ b/phpBB/db/schemas/postgres_schema.sql
@@ -98,7 +98,7 @@ CREATE TABLE phpbb_config (
Table structure for table phpbb_disallow
-------------------------------------------------------- */
CREATE TABLE phpbb_disallow (
- disallow_id int4 DEFAULT nextval('phpbb_disallow_id_s'::text) NOT NULL,
+ disallow_id int4 DEFAULT nextval('phpbb_disallow_id_seq'::text) NOT NULL,
disallow_username varchar(25),
CONSTRAINT phpbb_disallow_pkey PRIMARY KEY (disallow_id)
);