@bsv/overlay
Version:
BSV Blockchain Overlay Services Engine
14 lines • 941 B
JavaScript
import { up as initialSchemaUp, down as initialSchemaDown } from './migrations/2024-05-18-001-initial.js';
import { up as addBlockHeightColumnUp, down as addBlockHeightColumnDown } from './migrations/2024-07-10-001-block-height.js';
import { up as addTransactionsTableUp, down as addTransactionsTableDown } from './migrations/2024-07-17-001-transactions.js';
import { up as addedIndexesUp, down as addedIndexesDown } from './migrations/2024-07-18-001-indexes.js';
import { up as enlargeUp, down as enlargeDown } from './migrations/2025-05-28-001-enlarge.js';
const allMigrations = [
{ up: initialSchemaUp, down: initialSchemaDown },
{ up: addBlockHeightColumnUp, down: addBlockHeightColumnDown },
{ up: addTransactionsTableUp, down: addTransactionsTableDown },
{ up: addedIndexesUp, down: addedIndexesDown },
{ up: enlargeUp, down: enlargeDown }
];
export default allMigrations;
//# sourceMappingURL=all-migrations.js.map