Migration

Public TypeAlias

Signature
type Migration<Before = any, After = any> = {
  up: (oldState: Before) => After
  down: (newState: After) => Before
}
Edit this page
Last edited on 12 June 2023
migrateRecordMigrationFailureReason