mirror of
https://github.com/coder/coder.git
synced 2025-07-13 21:36:50 +00:00
feat: expose owner_name
in coder_workspace
resource (#11639)
This commit is contained in:
1
coderd/database/migrations/000185_add_user_name.down.sql
Normal file
1
coderd/database/migrations/000185_add_user_name.down.sql
Normal file
@ -0,0 +1 @@
|
||||
ALTER TABLE users DROP COLUMN name;
|
4
coderd/database/migrations/000185_add_user_name.up.sql
Normal file
4
coderd/database/migrations/000185_add_user_name.up.sql
Normal file
@ -0,0 +1,4 @@
|
||||
ALTER TABLE users ADD COLUMN name text NOT NULL DEFAULT '';
|
||||
|
||||
COMMENT ON COLUMN users.name IS 'Name of the Coder user';
|
||||
|
Reference in New Issue
Block a user