diff options
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/db/mysql_schema.sql | 2 | ||||
-rw-r--r-- | phpBB/db/postgres_schema.sql | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/db/mysql_schema.sql b/phpBB/db/mysql_schema.sql index 198f487874..5320d35efc 100644 --- a/phpBB/db/mysql_schema.sql +++ b/phpBB/db/mysql_schema.sql @@ -91,7 +91,7 @@ DROP TABLE IF EXISTS phpbb_categories; CREATE TABLE phpbb_categories ( cat_id int(10) NOT NULL auto_increment, cat_title varchar(100), - cat_order varchar(10), + cat_order int(11), PRIMARY KEY (cat_id) ); diff --git a/phpBB/db/postgres_schema.sql b/phpBB/db/postgres_schema.sql index cced1820a2..07ebcafde5 100644 --- a/phpBB/db/postgres_schema.sql +++ b/phpBB/db/postgres_schema.sql @@ -108,7 +108,7 @@ CREATE INDEX ban_userid_phpbb_banlist_index ON phpbb_banlist (ban_userid); CREATE TABLE phpbb_categories ( cat_id int4 DEFAULT nextval('phpbb_categories_id_seq'::text) NOT NULL, cat_title varchar(100), - cat_order varchar(10), + cat_order int4, CONSTRAINT phpbb_categories_pkey PRIMARY KEY (cat_id) ); |