mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Linter
synced 2024-11-23 23:44:17 +00:00
56567da56f
* Adds template and tag name fields to enable better search capability to the Linter extension Bug: T175177 Change-Id: Iac22d99109bb1253f450a64254f50677e3cdefeb
10 lines
525 B
SQL
10 lines
525 B
SQL
-- This file is automatically generated using maintenance/generateSchemaChangeSql.php.
|
|
-- Source: abstractSchemaChanges/patch-linter-add-template-tag-fields.json
|
|
-- Do not modify this file directly.
|
|
-- See https://www.mediawiki.org/wiki/Manual:Schema_changes
|
|
ALTER TABLE linter
|
|
ADD linter_template TEXT DEFAULT '' NOT NULL;
|
|
ALTER TABLE linter
|
|
ADD linter_tag TEXT DEFAULT '' NOT NULL;
|
|
CREATE INDEX linter_cat_template ON linter (linter_cat, linter_template);
|
|
CREATE INDEX linter_cat_tag ON linter (linter_cat, linter_tag); |