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.
11 lines
291 B
11 lines
291 B
2 years ago
|
CREATE TABLE organization_api_key (
|
||
|
uuid CHAR(36) NOT NULL,
|
||
|
org_uuid CHAR(36) NOT NULL REFERENCES organizations(uuid),
|
||
|
atype INTEGER NOT NULL,
|
||
|
api_key VARCHAR(255),
|
||
|
revision_date TIMESTAMP NOT NULL,
|
||
|
PRIMARY KEY(uuid, org_uuid)
|
||
|
);
|
||
2 years ago
|
|
||
|
ALTER TABLE users ADD COLUMN external_id TEXT;
|