mirror of
https://github.com/coder/coder.git
synced 2025-07-15 22:20:27 +00:00
refactor: Show template versions as timeline (#4800)
This commit is contained in:
@ -0,0 +1 @@
|
||||
ALTER TABLE template_versions ALTER COLUMN created_by DROP NOT NULL;
|
@ -0,0 +1,4 @@
|
||||
BEGIN;
|
||||
ALTER TABLE template_versions ALTER COLUMN created_by SET NOT NULL;
|
||||
UPDATE template_versions SET created_by = '00000000-0000-0000-0000-000000000000'::uuid WHERE created_by IS NULL;
|
||||
COMMIT;
|
Reference in New Issue
Block a user