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 • 499 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;
//# sourceMappingURL=migrate.config.d.ts.map