This includes: page_props.pp_page page_restrictions.pr_page ipblocks_restrictions.ir_value These columns must hold all possible values from page.page_id, which is an unsigned integer. These patches doesn't apply to Postgres. Bug: T297212 Change-Id: I789f19f4d52daeab08f3090771404d078f86d0b3
21 lines
No EOL
1.3 KiB
SQL
21 lines
No EOL
1.3 KiB
SQL
-- This file is automatically generated using maintenance/generateSchemaChangeSql.php.
|
|
-- Source: maintenance/abstractSchemaChanges/patch-page_restrictions-pr_page.json
|
|
-- Do not modify this file directly.
|
|
-- See https://www.mediawiki.org/wiki/Manual:Schema_changes
|
|
DROP INDEX pr_pagetype;
|
|
DROP INDEX pr_typelevel;
|
|
DROP INDEX pr_level;
|
|
DROP INDEX pr_cascade;
|
|
CREATE TEMPORARY TABLE /*_*/__temp__page_restrictions AS
|
|
SELECT pr_id, pr_page, pr_type, pr_level, pr_cascade, pr_expiry
|
|
FROM /*_*/page_restrictions;
|
|
DROP TABLE /*_*/page_restrictions;
|
|
CREATE TABLE /*_*/page_restrictions ( pr_id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, pr_page INTEGER UNSIGNED NOT NULL, pr_type BLOB NOT NULL, pr_level BLOB NOT NULL, pr_cascade SMALLINT NOT NULL, pr_expiry BLOB DEFAULT NULL );
|
|
INSERT INTO /*_*/page_restrictions ( pr_id, pr_page, pr_type, pr_level, pr_cascade, pr_expiry )
|
|
SELECT pr_id, pr_page, pr_type, pr_level, pr_cascade, pr_expiry
|
|
FROM /*_*/__temp__page_restrictions;
|
|
DROP TABLE /*_*/__temp__page_restrictions;
|
|
CREATE UNIQUE INDEX pr_pagetype ON /*_*/page_restrictions (pr_page, pr_type);
|
|
CREATE INDEX pr_typelevel ON /*_*/page_restrictions (pr_type, pr_level);
|
|
CREATE INDEX pr_level ON /*_*/page_restrictions (pr_level);
|
|
CREATE INDEX pr_cascade ON /*_*/page_restrictions (pr_cascade); |