77 releases (13 stable)

new 1.1.10 Apr 14, 2025
1.1.8 Mar 30, 2025
1.1.3 Dec 24, 2024
1.1.1 Nov 4, 2024
0.4.0 Nov 19, 2021

#2217 in Database interfaces

Download history 16149/week @ 2024-12-26 39347/week @ 2025-01-02 54947/week @ 2025-01-09 48666/week @ 2025-01-16 39678/week @ 2025-01-23 44707/week @ 2025-01-30 51797/week @ 2025-02-06 47071/week @ 2025-02-13 59229/week @ 2025-02-20 62336/week @ 2025-02-27 65088/week @ 2025-03-06 74560/week @ 2025-03-13 65654/week @ 2025-03-20 56519/week @ 2025-03-27 53223/week @ 2025-04-03 53597/week @ 2025-04-10

242,086 downloads per month
Used in 15 crates (via sea-orm-migration)

MIT/Apache

98KB
2.5K SLoC

SeaORM CLI

Install and Usage:

> cargo install sea-orm-cli 
> sea-orm-cli help

Or:

> cargo install --bin sea
> sea help

Getting Help:

cargo run -- -h

Running Entity Generator:

# MySQL (`--database-schema` option is ignored)
cargo run -- generate entity -u mysql://sea:sea@localhost/bakery -o out

# SQLite (`--database-schema` option is ignored)
cargo run -- generate entity -u sqlite://bakery.db -o out

# PostgreSQL
cargo run -- generate entity -u postgres://sea:sea@localhost/bakery -s public -o out

Running Migration:

  • Initialize migration directory
    cargo run -- migrate init
    
  • Generate a new migration file
    cargo run -- migrate generate MIGRATION_NAME
    
  • Apply all pending migrations
    cargo run -- migrate
    
    cargo run -- migrate up
    
  • Apply first 10 pending migrations
    cargo run -- migrate up -n 10
    
  • Rollback last applied migrations
    cargo run -- migrate down
    
  • Rollback last 10 applied migrations
    cargo run -- migrate down -n 10
    
  • Drop all tables from the database, then reapply all migrations
    cargo run -- migrate fresh
    
  • Rollback all applied migrations, then reapply all migrations
    cargo run -- migrate refresh
    
  • Rollback all applied migrations
    cargo run -- migrate reset
    
  • Check the status of all migrations
    cargo run -- migrate status
    

Dependencies

~17–32MB
~446K SLoC