mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
17 lines
411 B
SQL
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*/;
|
|
|