Files
smartmigration/ts/types.ts

10 lines
223 B
TypeScript

/**
* Status of a migration step in a run result.
*/
export type TMigrationStatus = 'applied' | 'skipped' | 'failed';
/**
* Backend used to persist the migration ledger.
*/
export type TLedgerBackend = 'mongo' | 's3';