Module

x/kysely_postgrs_js_dialect/mod.ts>kysely.SqliteAdapter#releaseMigrationLock

Kysely dialect for PostgreSQL using the Postgres.js client.
method kysely.SqliteAdapter.prototype.releaseMigrationLock
import { kysely } from "https://dotland.deno.dev/x/kysely_postgrs_js_dialect@v0.27.3/mod.ts";
const { SqliteAdapter } = kysely;

Releases the migration lock. See {@link acquireMigrationLock}.

If supportsTransactionalDdl is true then the db passed to this method is a transaction inside which the migrations were executed. Otherwise db is a single connection (session) that was used to execute the migrations and the acquireMigrationLock call.

Returns

Promise<void>