Skip to content

Commit

Permalink
fix(migrations): fix missed semilicon (#6062)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mama59 authored Jan 24, 2022
1 parent 319b58d commit be89b36
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 2 additions & 5 deletions engine/sql/api/223_rename_release_action.sql
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
-- +migrate Up
UPDATE action SET name = 'ReleaseVCS' WHERE name = 'Release' and type = 'Builtin'
UPDATE action SET name = 'ReleaseVCS' WHERE name = 'Release' and type = 'Builtin';

-- +migrate Down
UPDATE action SET name = 'Release' WHERE name = 'ReleaseVCS' and type = 'Builtin'



UPDATE action SET name = 'Release' WHERE name = 'ReleaseVCS' and type = 'Builtin';
2 changes: 1 addition & 1 deletion engine/sql/api/231_workflow_delete_dependencies.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
ALTER TABLE "workflow" ADD COLUMN IF NOT EXISTS "to_delete_with_dependencies" BOOLEAN;

-- +migrate Down
ALTER TABLE "workflow" DROP COLUMN IF EXISTS "to_delete_with_dependencies"
ALTER TABLE "workflow" DROP COLUMN IF EXISTS "to_delete_with_dependencies";

0 comments on commit be89b36

Please sign in to comment.