mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/OATHAuth
synced 2024-12-03 20:36:29 +00:00
ea984e5c2b
Please note, this patch requires a schema change before merging Change-Id: I71286534d21d95083436d64d79811943c1a1d032 ERM: #14484 Bug: T218210
11 lines
212 B
SQL
11 lines
212 B
SQL
CREATE TABLE /*_*/oathauth_users (
|
|
-- User ID
|
|
id INT NOT NULL PRIMARY KEY IDENTITY(0,1),
|
|
|
|
-- Module user has selected
|
|
module NVARCHAR(255) NOT NULL,
|
|
|
|
-- Module data
|
|
data VARBINARY(MAX) NULL DEFAULT NULL
|
|
);
|