Creates a new atomic migration file. If a model is provided, it generates standard CREATE TABLE statements.
OptionalmodelOptions: anyExecutes all pending migrations
Compares the current schema models against the saved snapshot and generates a migration file with the deltas (e.g. ALTER TABLE ADD COLUMN).
Reverts all migrations
Reverts the last executed migration
Core manager for orchestrating database migrations. Wraps
umzugto provide atomic execution, generation, and diffing.