mirror of
https://github.com/coder/coder.git
synced 2025-07-15 22:20:27 +00:00
feat: store and display template creator (#2228)
* design commit * add owner_id to templates table * add owner information in apis and ui * update minWidth for statItem * rename owner to created_by * missing refactor to created_by * handle errors in fetching created_by names
This commit is contained in:
@ -0,0 +1 @@
|
||||
ALTER TABLE ONLY templates DROP COLUMN IF EXISTS created_by;
|
@ -0,0 +1 @@
|
||||
ALTER TABLE ONLY templates ADD COLUMN IF NOT EXISTS created_by uuid REFERENCES users (id) ON DELETE RESTRICT;
|
Reference in New Issue
Block a user