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

Properties

lockRowId: string

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

lockTable: string

The name of the migration lock table.

lockTableSchema?: string

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.