2026-04-07 17:35:05 +00:00
|
|
|
/**
|
|
|
|
|
* 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';
|
2026-05-19 21:44:57 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* How strictly the registered migration chain must end at targetVersion.
|
|
|
|
|
*/
|
|
|
|
|
export type TTargetVersionStrategy = 'strict' | 'bridge';
|