Fixed field type for cat_order

git-svn-id: file:///svn/phpbb/trunk@417 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2001-06-03 15:57:23 +00:00
parent 1b8e9222f0
commit f94c9f01a5
2 changed files with 2 additions and 2 deletions

View file

@ -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)
);

View file

@ -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)
);