Running Migration
After you have defined the migrations, you can apply or revert migrations in the terminal or on application startup.
Command Line Interface (CLI)
Migrations can be run manually in the terminal. DATABASE_URL
must be set in your environment, follow the instructions here to configure it.
Supported commands:
init
: Initialize migration directorygenerate
: Generate a new migration fileup
: Apply all pending migrationsup -n 10
: Apply 10 pending migrationsdown
: Rollback last applied migrationdown -n 10
: Rollback last 10 applied migrationsstatus
: Check the status of all migrationsfresh
: Drop all tables from the database, then reapply all migrationsrefresh
: Rollback all applied migrations, then reapply all migrationsreset
: Rollback all applied migrations
Via sea-orm-cli
The sea-orm-cli
will execute cargo run --manifest-path ./migration/Cargo.toml -- COMMAND
under the hood.
$ sea-orm-cli migrate COMMAND
You can customize the manifest path.
$ sea-orm-cli migrate COMMAND -d ./other/migration/dir
Via SeaSchema Migrator CLI
Run the migrator CLI defined in migration/main.rs
.
$ cd migration
$ cargo run -- COMMAND
Migrating Programmatically
You can perform migration on application startup with Migrator
, which implements the MigratorTrait
.
src/main.rs
use migration::{Migrator, MigratorTrait};
/// Apply all pending migrations
Migrator::up(db, None).await?;
/// Apply 10 pending migrations
Migrator::up(db, Some(10)).await?;
/// Rollback last applied migrations
Migrator::down(db, None).await?;
/// Rollback last 10 applied migrations
Migrator::down(db, Some(10)).await?;
/// Check the status of all migrations
Migrator::status(db).await?;
/// Drop all tables from the database, then reapply all migrations
Migrator::fresh(db).await?;
/// Rollback all applied migrations, then reapply all migrations
Migrator::refresh(db).await?;
/// Rollback all applied migrations
Migrator::reset(db).await?;