wiki.techinc.nl/maintenance/archives/patch-category.sql
umherirrender e256c69f9a Remove a bunch of trailing spaces and unneeded newlines
Change-Id: If9fb04f64389b9b40c13f3372ad4792c2e14def0
2012-10-20 13:35:38 +02:00

17 lines
411 B
SQL

CREATE TABLE /*$wgDBprefix*/category (
cat_id int unsigned NOT NULL auto_increment,
cat_title varchar(255) binary NOT NULL,
cat_pages int signed NOT NULL default 0,
cat_subcats int signed NOT NULL default 0,
cat_files int signed NOT NULL default 0,
cat_hidden tinyint(1) unsigned NOT NULL default 0,
PRIMARY KEY (cat_id),
UNIQUE KEY (cat_title),
KEY (cat_pages)
) /*$wgDBTableOptions*/;