feat(smartmigration): add initial smartmigration package with MongoDB and S3 migration runner
This commit is contained in:
9
ts/types.ts
Normal file
9
ts/types.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/**
|
||||
* 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';
|
||||
Reference in New Issue
Block a user