mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Linter
synced 2024-11-11 16:59:40 +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
18 lines
1.3 KiB
SQL
18 lines
1.3 KiB
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
|
|
DROP INDEX linter_page;
|
|
DROP INDEX linter_cat_page_position;
|
|
CREATE TEMPORARY TABLE /*_*/__temp__linter AS
|
|
SELECT linter_id, linter_page, linter_cat, linter_start, linter_end, linter_params
|
|
FROM /*_*/linter;
|
|
DROP TABLE /*_*/linter;
|
|
CREATE TABLE /*_*/linter ( linter_id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, linter_page INTEGER UNSIGNED NOT NULL, linter_cat INTEGER UNSIGNED NOT NULL, linter_start INTEGER UNSIGNED NOT NULL, linter_end INTEGER UNSIGNED NOT NULL, linter_params BLOB DEFAULT NULL, linter_namespace INTEGER DEFAULT NULL );
|
|
INSERT INTO /*_*/linter ( linter_id, linter_page, linter_cat, linter_start, linter_end, linter_params )
|
|
SELECT linter_id, linter_page, linter_cat, linter_start, linter_end, linter_params
|
|
FROM /*_*/__temp__linter;
|
|
DROP TABLE /*_*/__temp__linter;
|
|
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 );
|
|
CREATE INDEX linter_cat_namespace ON /*_*/linter (linter_cat, linter_namespace); |