Skip to content

Commit b471957

Browse files
committed
Fix Liquibase changeset IDs to match migration file numbers
Changeset IDs were not updated when migration files were renumbered during rebase (003→004 for Postgres, 002→003 for MySQL).
1 parent 9e6a1b0 commit b471957

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
--liquibase formatted sql
2-
--changeset outbox:002
2+
--changeset outbox:003
33

44
CREATE INDEX idx_outbox_status_created_at ON outbox (status, created_at);
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
--liquibase formatted sql
2-
--changeset outbox:003
2+
--changeset outbox:004
33

44
CREATE INDEX IF NOT EXISTS idx_outbox_status_created_at ON outbox (status, created_at);

0 commit comments

Comments
 (0)