MigrateResult

View Source

Summary

Result shape returned by migration runner commands.

Signature

type MigrateResult = {
  applied: MigrationStatusEntry[];
  reverted: MigrationStatusEntry[];
  sql: SqlStatement[];
};