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.
 
 
 
 
 
 

9 lines
317 B

CREATE TABLE scim_api_key (
uuid TEXT NOT NULL PRIMARY KEY,
org_uuid TEXT NOT NULL UNIQUE,
key_hash TEXT NOT NULL,
enabled BOOLEAN NOT NULL DEFAULT 1,
created_at DATETIME NOT NULL,
revision_date DATETIME NOT NULL,
FOREIGN KEY(org_uuid) REFERENCES organizations(uuid)
);