mediawiki-extensions-OATHAuth/sql/mysql/tables.sql
Dejan Savuljesku ea984e5c2b Refactor the extension to support multiple auth modules
Please note, this patch requires a schema change before merging

Change-Id: I71286534d21d95083436d64d79811943c1a1d032
ERM: #14484
Bug: T218210
2019-06-18 10:45:21 +00:00

12 lines
190 B
SQL

CREATE TABLE /*_*/oathauth_users (
-- User ID
id int not null primary key,
-- Module user has selected
module varchar(255) not null,
-- Data
data blob null
) /*$wgDBTableOptions*/;