aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/db/schemas/postgres_schema.sql
diff options
context:
space:
mode:
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)
);