Last modified: 2014-06-11 05:31:30 UTC
Short description: Add centralauth.renameuser_status table Which wikis are affected: centralauth db Which tables: renameuser What is the change to those tables: Creating it Links to gerrit changes and/or other related bug reports. Schema: -- Table for global rename status CREATE TABLE renameuser_status ( -- Old name being renamed from ru_oldname varchar(255) binary not null, -- New name being renamed to ru_newname varchar(255) binary not null, -- WikiID ru_wiki varchar(255) binary not null, -- current state of the renaming ru_status enum ('queued', 'inprogress', 'failed'), KEY (ru_oldname, ru_wiki) ) /*$wgDBTableOptions*/; Gerrit change #92468
On hold pending more info. The change set patch file has UNIQUE KEY (ru_oldname, ru_wiki).
Correct definition: CREATE TABLE renameuser_status ( -- Old name being renamed from ru_oldname varchar(255) binary not null, -- New name being renamed to ru_newname varchar(255) binary not null, -- WikiID ru_wiki varchar(255) binary not null, -- current state of the renaming ru_status enum ('queued', 'inprogress', 'failed'), UNIQUE KEY `ru_oldname` (`ru_oldname`, `ru_wiki`) ) /*$wgDBTableOptions*/;
Done.