mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
* add flag for auto create groups * fixup! add flag for auto create groups * sync missing groups Also added a regex filter to filter out groups that are not important
16 lines
404 B
PL/PgSQL
16 lines
404 B
PL/PgSQL
BEGIN;
|
|
|
|
CREATE TYPE group_source AS ENUM (
|
|
-- User created groups
|
|
'user',
|
|
-- Groups created by the system through oidc sync
|
|
'oidc'
|
|
);
|
|
|
|
ALTER TABLE groups
|
|
ADD COLUMN source group_source NOT NULL DEFAULT 'user';
|
|
|
|
COMMENT ON COLUMN groups.source IS 'Source indicates how the group was created. It can be created by a user manually, or through some system process like OIDC group sync.';
|
|
|
|
COMMIT;
|