cb6aee0e52e14dd1d3bb0a8e51fb9163d98b62b2
[lhc/web/wiklou.git] / maintenance / archives / patch-category.sql
1 CREATE TABLE /*$wgDBprefix*/category (
2 cat_id int unsigned NOT NULL auto_increment,
3
4 cat_title varbinary(255) NOT NULL,
5
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,
9
10 cat_hidden tinyint(1) unsigned NOT NULL default 0,
11
12 PRIMARY KEY (cat_id),
13 UNIQUE KEY (cat_title),
14
15 KEY (cat_pages)
16 ) /*$wgDBTableOptions*/;
17