mirror of
https://github.com/coder/coder.git
synced 2025-07-09 11:45:56 +00:00
9 lines
266 B
PL/PgSQL
9 lines
266 B
PL/PgSQL
BEGIN;
|
|
|
|
ALTER TABLE groups
|
|
ADD COLUMN display_name TEXT NOT NULL DEFAULT '';
|
|
|
|
COMMENT ON COLUMN groups.display_name IS 'Display name is a custom, human-friendly group name that user can set. This is not required to be unique and can be the empty string.';
|
|
|
|
COMMIT;
|