Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MigrationLockOptions

interface MigrationLockOptions {
readonly lockRowId: string;
readonly lockTable: string;
readonly lockTableSchema?: string;
}

§Properties

§
readonly lockRowId: string
[src]

The id of the only row in the migration lock table.

§
readonly lockTable: string
[src]

The name of the migration lock table.

§
readonly lockTableSchema?: string
[src]

The schema in which the migration lock table lives. This is only defined if the user has specified a custom schema in the migration settings.