UNPKG

pg-flyway

Version:

Migration tool for PostgreSQL database, NodeJS version of Java migration tool - flyway (not wrapper for https://flywaydb.org/documentation/commandline)

15 lines (14 loc) 406 B
import { Logger } from 'log4js'; export declare class CreateEmptyMigrationService { private readonly options; protected logger: Logger; constructor(options: { locations: string[]; sqlMigrationSuffixes: string[]; sqlMigrationSeparator: string; }); createEmptyMigration({ name, version }: { name: string; version?: string; }): Promise<void>; }