mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/OATHAuth
synced 2024-11-24 08:14:15 +00:00
d2097fbcaf
Created patch files for other database types. Note that some types, such as Oracle, are not guaranteed to work, since not even MW core works with them yet anyway. Bug: T67658 Change-Id: Ie9ce8a4d1140d16017c1aa83865f79d8b0986528
11 lines
220 B
SQL
11 lines
220 B
SQL
CREATE TABLE /*_*/oathauth_users (
|
|
-- User ID
|
|
id INT NOT NULL PRIMARY KEY IDENTITY(0,1),
|
|
|
|
-- Secret key
|
|
secret NVARCHAR(255) NULL DEFAULT NULL,
|
|
|
|
-- Scratch tokens
|
|
scratch_tokens varbinary(511) NULL DEFAULT NULL
|
|
);
|