Files
coder/coderd/database/migrations/000147_group_display_name.up.sql
2023-08-02 16:28:30 +00:00

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;