Skip to content

remix/data-table · Type

View Source

MigrationStatus

Summary

Effective migration status.

  • applied: the current migration matches its journal entry.
  • pending: the current migration has not been applied.
  • drifted: the current migration differs from its journal entry.
  • missing: an applied journal entry has no migration in the current set.

Signature

type MigrationStatus = 'applied' | 'pending' | 'drifted' | 'missing'