mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 21:38:54 +00: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:
parent
1b8e9222f0
commit
f94c9f01a5
2 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue