You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
257 B
MySQL
8 lines
257 B
MySQL
3 years ago
|
CREATE TABLE /*_*/isekai_oidc (
|
||
|
oidc_user INT UNSIGNED PRIMARY KEY NOT NULL,
|
||
|
oidc_subject VARCHAR(255) NOT NULL,
|
||
|
access_token TEXT,
|
||
|
refresh_token TEXT
|
||
|
) /*$wgDBTableOptions*/;
|
||
|
CREATE INDEX /*i*/isekai_oidc_subject ON /*_*/isekai_oidc(oidc_subject);
|