mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Linter
synced 2024-11-27 17:20:12 +00:00
3387c848d0
Bug: T259374 Change-Id: Ida866d45bc3daca6ed763df2b8c38d2b27c809aa
19 lines
652 B
SQL
19 lines
652 B
SQL
-- This file is automatically generated using maintenance/generateSchemaSql.php.
|
|
-- Source: ./tables.json
|
|
-- Do not modify this file directly.
|
|
-- See https://www.mediawiki.org/wiki/Manual:Schema_changes
|
|
CREATE TABLE /*_*/linter (
|
|
linter_id INT UNSIGNED AUTO_INCREMENT NOT NULL,
|
|
linter_page INT UNSIGNED NOT NULL,
|
|
linter_cat INT UNSIGNED NOT NULL,
|
|
linter_start INT UNSIGNED NOT NULL,
|
|
linter_end INT UNSIGNED NOT NULL,
|
|
linter_params BLOB DEFAULT NULL,
|
|
INDEX linter_page (linter_page),
|
|
UNIQUE INDEX linter_cat_page_position (
|
|
linter_cat, linter_page, linter_start,
|
|
linter_end
|
|
),
|
|
PRIMARY KEY(linter_id)
|
|
) /*$wgDBTableOptions*/;
|