mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Linter
synced 2024-12-18 10:52:03 +00:00
21 lines
594 B
MySQL
21 lines
594 B
MySQL
|
-- 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 SERIAL NOT NULL,
|
||
|
linter_page INT NOT NULL,
|
||
|
linter_cat INT NOT NULL,
|
||
|
linter_start INT NOT NULL,
|
||
|
linter_end INT NOT NULL,
|
||
|
linter_params TEXT DEFAULT NULL,
|
||
|
PRIMARY KEY(linter_id)
|
||
|
);
|
||
|
|
||
|
CREATE INDEX linter_page ON linter (linter_page);
|
||
|
|
||
|
CREATE UNIQUE INDEX linter_cat_page_position ON linter (
|
||
|
linter_cat, linter_page, linter_start,
|
||
|
linter_end
|
||
|
);
|