Skip to content

Commit

Permalink
fix: db migration version
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Bétrancourt <thomas@betrancourt.net>
  • Loading branch information
rclsilver committed Nov 21, 2022
1 parent a9f806c commit 34082a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion db/migration.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
)

const (
expectedVersion = "v1.21.0-migration009"
expectedVersion = "v1.21.1-migration010"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion sql/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,6 @@ CREATE TABLE "utask_sql_migrations" (
current_migration_applied TEXT PRIMARY KEY
);

INSERT INTO "utask_sql_migrations" VALUES ('v1.21.0-migration009');
INSERT INTO "utask_sql_migrations" VALUES ('v1.21.1-migration010');

END;

0 comments on commit 34082a3

Please sign in to comment.