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.
7 lines
542 B
7 lines
542 B
ALTER TABLE organizations ADD COLUMN identifier TEXT NOT NULL;
|
|
ALTER TABLE organizations ADD COLUMN use_sso BOOLEAN NOT NULL;
|
|
ALTER TABLE organizations ADD COLUMN callback_path TEXT NOT NULL;
|
|
ALTER TABLE organizations ADD COLUMN signed_out_callback_path TEXT NOT NULL;
|
|
ALTER TABLE organizations ADD COLUMN authority TEXT NOT NULL;
|
|
ALTER TABLE organizations ADD COLUMN client_id TEXT NOT NULL;
|
|
ALTER TABLE organizations ADD COLUMN client_secret TEXT NOT NULL;
|
|
|