diff --git a/db/migration.go b/db/migration.go index 92b65481..412ca774 100644 --- a/db/migration.go +++ b/db/migration.go @@ -13,7 +13,7 @@ import ( ) const ( - expectedVersion = "v1.21.0-migration009" + expectedVersion = "v1.21.1-migration010" ) var ( diff --git a/sql/schema.sql b/sql/schema.sql index a39c2fff..7d02c42e 100644 --- a/sql/schema.sql +++ b/sql/schema.sql @@ -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;