You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
608 B
18 lines
608 B
ALTER TABLE organizations ADD COLUMN identifier TEXT;
|
|
|
|
CREATE TABLE sso_nonce (
|
|
uuid CHAR(36) NOT NULL PRIMARY KEY,
|
|
org_uuid CHAR(36) NOT NULL REFERENCES organizations (uuid),
|
|
nonce CHAR(36) NOT NULL
|
|
);
|
|
|
|
CREATE TABLE sso_config (
|
|
uuid CHAR(36) NOT NULL PRIMARY KEY,
|
|
org_uuid CHAR(36) NOT NULL REFERENCES organizations(uuid),
|
|
use_sso BOOLEAN NOT NULL,
|
|
callback_path TEXT NOT NULL,
|
|
signed_out_callback_path TEXT NOT NULL,
|
|
authority TEXT,
|
|
client_id TEXT,
|
|
client_secret TEXT
|
|
);
|
|
|