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
16 lines (15 loc) • 594 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DEFAULT_MIGRATE_CONFIG = exports.FLYWAY_HISTORY_SCHEMA = exports.FLYWAY_HISTORY_TABLE = void 0;
exports.FLYWAY_HISTORY_TABLE = '__migrations';
exports.FLYWAY_HISTORY_SCHEMA = 'public';
exports.DEFAULT_MIGRATE_CONFIG = {
migrate: {
locations: ['migrations'],
historyTable: exports.FLYWAY_HISTORY_TABLE,
historySchema: exports.FLYWAY_HISTORY_SCHEMA,
sqlMigrationSuffixes: ['.sql'],
sqlMigrationSeparator: '__',
sqlMigrationStatementSeparator: '--',
},
};