mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
7 lines
153 B
SQL
7 lines
153 B
SQL
CREATE TYPE api_key_scope AS ENUM (
|
|
'all',
|
|
'application_connect'
|
|
);
|
|
|
|
ALTER TABLE api_keys ADD COLUMN scope api_key_scope NOT NULL DEFAULT 'all';
|