From: jenkins-bot Date: Mon, 13 Mar 2017 05:19:57 +0000 (+0000) Subject: Merge "Drop index oi_name_archive_name on table oldimage" X-Git-Tag: 1.31.0-rc.0~3823 X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=commitdiff_plain;h=c584722cc2e3d33edae58d46c2149063b3fc6d72;hp=-c Merge "Drop index oi_name_archive_name on table oldimage" --- c584722cc2e3d33edae58d46c2149063b3fc6d72 diff --combined maintenance/mssql/tables.sql index 78f067173b,ddc37baeee..3babb393fb --- a/maintenance/mssql/tables.sql +++ b/maintenance/mssql/tables.sql @@@ -64,11 -64,9 +64,11 @@@ INSERT INTO /*_*/mwuser (user_name) VAL CREATE TABLE /*_*/user_groups ( ug_user INT NOT NULL REFERENCES /*_*/mwuser(user_id) ON DELETE CASCADE, ug_group NVARCHAR(255) NOT NULL DEFAULT '', + ug_expiry varchar(14) DEFAULT NULL, + PRIMARY KEY(ug_user, ug_group) ); -CREATE UNIQUE clustered INDEX /*i*/ug_user_group ON /*_*/user_groups (ug_user, ug_group); CREATE INDEX /*i*/ug_group ON /*_*/user_groups(ug_group); +CREATE INDEX /*i*/ug_expiry ON /*_*/user_groups(ug_expiry); -- Stores the groups the user has once belonged to. -- The user may still belong to these groups (check user_groups). @@@ -301,7 -299,7 +301,7 @@@ CREATE TABLE /*_*/categorylinks -- conversion algorithm is run. We store this so that we can update -- collations without reparsing all pages. -- Note: If you change the length of this field, you also need to change - -- code in LinksUpdate.php. See bug 25254. + -- code in LinksUpdate.php. See T27254. cl_sortkey_prefix varbinary(255) NOT NULL default 0x, -- This isn't really used at present. Provided for an optional @@@ -528,7 -526,7 +528,7 @@@ CREATE TABLE /*_*/ipblocks -- Size chosen to allow IPv6 -- FIXME: these fields were originally blank for single-IP blocks, -- but now they are populated. No migration was ever done. They - -- should be fixed to be blank again for such blocks (bug 49504). + -- should be fixed to be blank again for such blocks (T51504). ipb_range_start varchar(255) NOT NULL, ipb_range_end varchar(255) NOT NULL, @@@ -661,7 -659,6 +661,6 @@@ CREATE TABLE /*_*/oldimage CREATE INDEX /*i*/oi_usertext_timestamp ON /*_*/oldimage (oi_user_text,oi_timestamp); CREATE INDEX /*i*/oi_name_timestamp ON /*_*/oldimage (oi_name,oi_timestamp); - CREATE INDEX /*i*/oi_name_archive_name ON /*_*/oldimage (oi_name,oi_archive_name); CREATE INDEX /*i*/oi_sha1 ON /*_*/oldimage (oi_sha1);