diff --git a/src/lib/db/migrations/155_exclusive_connection_leases.sql b/src/lib/db/migrations/157_exclusive_connection_leases.sql similarity index 100% rename from src/lib/db/migrations/155_exclusive_connection_leases.sql rename to src/lib/db/migrations/157_exclusive_connection_leases.sql diff --git a/tests/unit/exclusive-connection-leases.test.ts b/tests/unit/exclusive-connection-leases.test.ts index 6488fdea5e..a289ce99a2 100644 --- a/tests/unit/exclusive-connection-leases.test.ts +++ b/tests/unit/exclusive-connection-leases.test.ts @@ -49,7 +49,7 @@ test("hashes canonical owners and never persists the raw owner", () => { test("uses the live next-free migration slot without runner compatibility special cases", () => { const migration = fs.readFileSync( - new URL("../../src/lib/db/migrations/155_exclusive_connection_leases.sql", import.meta.url), + new URL("../../src/lib/db/migrations/157_exclusive_connection_leases.sql", import.meta.url), "utf8" ); const runner = fs.readFileSync( @@ -57,7 +57,7 @@ test("uses the live next-free migration slot without runner compatibility specia "utf8" ); assert.match(migration, /CREATE TABLE IF NOT EXISTS exclusive_connection_leases/); - assert.doesNotMatch(runner, /case "155"/); + assert.doesNotMatch(runner, /case "157"/); }); test("enforces global active owner and connection uniqueness", () => {