Setting Up Migration
If you already have a database with tables and data, you can skip this chapter and move on to generating SeaORM entities.
If you are starting from a fresh database, it's better to version control your database schema. SeaORM ships with a migration tool, allowing you to write migrations in SeaQuery or SQL.
Migration Tableβ
A table named seaql_migrations will be created in your database to keep track of the applied migrations. It will be created automatically when you run the migration.
Creating Migration Directoryβ
First, install sea-orm-cli with cargo.
cargo install sea-orm-cli
Then, setup the migration directory by executing sea-orm-cli migrate init.
# Setup the migration directory in `./migration`
$ sea-orm-cli migrate init
Initializing migration directory...
Creating file `./migration/src/lib.rs`
Creating file `./migration/src/m20220101_000001_create_table.rs`
Creating file `./migration/src/main.rs`
Creating file `./migration/Cargo.toml`
Creating file `./migration/README.md`
Done!
# If you want to setup the migration directory in else where
$ sea-orm-cli migrate init -d ./other/migration/dir
You should have a migration directory with a structure like below.
migration
βββ Cargo.toml
βββ README.md
βββ src
βββ lib.rs # Migrator API, for integration
βββ m20220101_000001_create_table.rs # A sample migration file
βββ main.rs # Migrator CLI, for running manually
Workspace Structureβ
It is recommended to structure your cargo workspace as follows to share SeaORM entities between the app crate and the migration crate. Checkout the integration examples for demonstration.
Migration Crateβ
Import the sea-orm-migration and async-std crate.
[dependencies]
async-std = { version = "^1", features = ["attributes", "tokio1"] }
[dependencies.sea-orm-migration]
version = "^0"
features = [
# Enable at least one `ASYNC_RUNTIME` and `DATABASE_DRIVER` feature if you want to run migration via CLI.
# View the list of supported features at https://www.sea-ql.org/SeaORM/docs/install-and-config/database-and-async-runtime.
# e.g.
# "runtime-tokio-rustls", # `ASYNC_RUNTIME` feature
# "sqlx-postgres", # `DATABASE_DRIVER` feature
]
Let's write a migration. Detailed instructions in the next section.
use sea_orm_migration::prelude::*;
#[derive(DeriveMigrationName)]
pub struct Migration;
#[async_trait::async_trait]
impl MigrationTrait for Migration {
async fn up(&self, manager: &SchemaManager) -> Result<(), DbErr> {
// Replace the sample below with your own migration scripts
todo!();
}
async fn down(&self, manager: &SchemaManager) -> Result<(), DbErr> {
// Replace the sample below with your own migration scripts
todo!();
}
}
Entity Crateβ
Create an entity crate in your root workspace.
You don't have SeaORM entities defined?
You can create an entity crate without any entity files. Then, write the migration and run it to create tables in the database. Finally, generate SeaORM entities with sea-orm-cli and output the entity files to entity/src/entities folder.
After generating the entity files, you can re-export the generated entities by adding following lines in entity/src/lib.rs:
mod entities;
pub use entities::*;
entity
βββ Cargo.toml # Include SeaORM dependency
βββ src
βββ lib.rs # Re-export SeaORM and entities
βββ post.rs # Define the `post` entity
Specify SeaORM dependency.
[dependencies]
sea-orm = { version = "^0" }
App Crateβ
This is where the application logic goes.
Create a workspace that contains app, entity and migration crates and import the entity crate into the app crate.
If we want to bundle the migration utility as part of your app, you'd also want to import the migration crate.
[workspace]
members = [".", "entity", "migration"]
[dependencies]
entity = { path = "entity" }
migration = { path = "migration" } # depends on your needs
[dependencies.sea-orm]
version = "^0"
features = [ ... ]
In your app, you can then run the migrator on startup.
use migration::{Migrator, MigratorTrait};
let connection = sea_orm::Database::connect(&database_url).await?;
Migrator::up(&connection, None).await?;