Skip to content

Commit

Permalink
Fix: incorrect UPDATE statement
Browse files Browse the repository at this point in the history
  • Loading branch information
dabico committed Dec 28, 2023
1 parent b1e517d commit 6f7428d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions flyway/sql/V13__disable.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ ADD COLUMN locked BIT NULL
AFTER archived;

UPDATE git_repo
SET disabled = false
AND locked = false;
SET
disabled = false,
locked = false;

0 comments on commit 6f7428d

Please sign in to comment.