diff --git a/modules/oidc/mysql.schema.sql b/modules/oidc/mysql.schema.sql index 4c0833a..d893302 100644 --- a/modules/oidc/mysql.schema.sql +++ b/modules/oidc/mysql.schema.sql @@ -19,7 +19,9 @@ CREATE TABLE tbl_provider ( buttoncolor varchar(255) NOT NULL, textcolor varchar(255) NOT NULL, caption varchar(255) NOT NULL, + custom_username varchar(255) DEFAULT NULL, enforce_scheme_https enum ('y', 'n') DEFAULT 'n' NOT NULL, + azure_groups enum ('y', 'n') DEFAULT 'n' NOT NULL, enabled enum ('y', 'n') DEFAULT 'n' NOT NULL, ctime bigint unsigned DEFAULT NULL, mtime bigint unsigned DEFAULT NULL, @@ -87,4 +89,4 @@ CREATE TABLE tbl_schema ( INSERT INTO tbl_schema (version, timestamp, success, reason) -VALUES ('0.5.8', UNIX_TIMESTAMP() * 1000, 'y', NULL); \ No newline at end of file +VALUES ('0.6.0', UNIX_TIMESTAMP() * 1000, 'y', NULL); \ No newline at end of file