https://bugzilla.wikimedia.org/show_bug.cgi?id=66446

            Bug ID: 66446
           Summary: Add centralauth.renameuser_status table
           Product: Wikimedia
           Version: unspecified
          Hardware: All
                OS: All
            Status: NEW
          Keywords: schema-change
          Severity: normal
          Priority: Unprioritized
         Component: General/Unknown
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected], [email protected],
                    [email protected]
            Blocks: 14862, 49188
       Web browser: ---
   Mobile Platform: ---

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

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to