mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/OATHAuth
synced 2024-11-24 00:05:24 +00:00
9952cf8ee6
Bug: T264492 Change-Id: I622b177015740ca5f6f625250efa3d4ad71be448
18 lines
371 B
SQL
18 lines
371 B
SQL
CREATE TABLE /*_*/oathauth_users_tmp (
|
|
-- User ID
|
|
id int not null primary key,
|
|
|
|
-- Module user has selected
|
|
module text not null,
|
|
|
|
-- Data
|
|
data blob null
|
|
);
|
|
|
|
INSERT INTO /*_*/oathauth_users_tmp (id, module, data)
|
|
SELECT id, module, data FROM /*_*/oathauth_users;
|
|
|
|
DROP TABLE /*_*/oathauth_users;
|
|
|
|
ALTER TABLE /*_*/oathauth_users_tmp RENAME TO /*_*/oathauth_users;
|