rucken
Version:
Console tools and scripts for nx and not only that I (EndyKaufman) use to automate the workflow and speed up the development process
14 lines (13 loc) • 455 B
TypeScript
export declare const FLYWAY_HISTORY_TABLE = "__migrations";
export declare const FLYWAY_HISTORY_SCHEMA = "public";
export interface MigrateConfig {
migrate: {
locations?: string[];
historyTable?: string;
historySchema?: string;
sqlMigrationSuffixes?: string[];
sqlMigrationSeparator?: string;
sqlMigrationStatementSeparator?: string;
};
}
export declare const DEFAULT_MIGRATE_CONFIG: MigrateConfig;