-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(sql): set empty string as default compression alg
Signed-off-by: Thomas Bétrancourt <[email protected]>
- Loading branch information
Showing
2 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
-- +migrate Up | ||
|
||
UPDATE "resolution" SET "steps_compression_alg" = '' WHERE "steps_compression_alg" IS NULL; | ||
|
||
ALTER TABLE "resolution" ALTER COLUMN "steps_compression_alg" SET NOT NULL; | ||
ALTER TABLE "resolution" ALTER COLUMN "steps_compression_alg" SET DEFAULT ''; | ||
|
||
INSERT INTO "utask_sql_migrations" VALUES ('v1.21.1-migration010'); | ||
|
||
-- +migrate Down | ||
|
||
ALTER TABLE "resolution" ALTER COLUMN "steps_compression_alg" DROP NOT NULL; | ||
ALTER TABLE "resolution" ALTER COLUMN "steps_compression_alg" DROP DEFAULT; | ||
|
||
DELETE FROM "utask_sql_migrations" WHERE current_migration_applied = 'v1.21.1-migration010'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters