Add column to designer table (#257)

This commit is contained in:
Niklas Fondberg
2022-03-25 10:48:53 +01:00
committed by GitHub
parent 28fa445143
commit 11f59c6a93
+4
View File
@@ -0,0 +1,4 @@
-- Add retouch enabled flag to designers
ALTER TABLE designers DROP COLUMN IF EXISTS enable_retouch;
ALTER TABLE designers ADD COLUMN IF NOT EXISTS enable_retouch integer DEFAULT 1;