mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-20 00:21:42 +02:00
Fixed field type for cat_order
git-svn-id: file:///svn/phpbb/trunk@417 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -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)
|
||||
);
|
||||
|
||||
|
@@ -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)
|
||||
);
|
||||
|
||||
|
Reference in New Issue
Block a user