1 CREATE TABLE /*$wgDBprefix*/category (
2 cat_id int unsigned NOT NULL auto_increment,
4 cat_title varchar(255) binary NOT NULL,
6 cat_pages int signed NOT NULL default 0,
7 cat_subcats int signed NOT NULL default 0,
8 cat_files int signed NOT NULL default 0,
10 cat_hidden tinyint(1) unsigned NOT NULL default 0,
13 UNIQUE KEY (cat_title),
16 ) /*$wgDBTableOptions*/;