refactor: Show template versions as timeline (#4800)

This commit is contained in:
Bruno Quaresma
2022-10-31 13:38:07 -03:00
committed by GitHub
parent cc655672eb
commit 46e0953876
21 changed files with 218 additions and 218 deletions

View File

@ -0,0 +1 @@
ALTER TABLE template_versions ALTER COLUMN created_by DROP NOT NULL;

View File

@ -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;