mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Linter
synced 2024-11-13 17:57:15 +00:00
4544a9c7cc
* This patch contains the code needed to update the database with the addition Linter table column linter_namespace <int/null> and add an index with category and namespace for faster selection of linter records. Bug: T299612 Change-Id: I05da381b9a74294b44d4aef968614277d601a176
7 lines
395 B
SQL
7 lines
395 B
SQL
-- This file is automatically generated using maintenance/generateSchemaChangeSql.php.
|
|
-- Source: abstractSchemaChanges/patch-linter-add-namespace.json
|
|
-- Do not modify this file directly.
|
|
-- See https://www.mediawiki.org/wiki/Manual:Schema_changes
|
|
ALTER TABLE /*_*/linter
|
|
ADD linter_namespace INT DEFAULT NULL;
|
|
CREATE INDEX linter_cat_namespace ON /*_*/linter (linter_cat, linter_namespace); |