36 releases

1.0.0-rc.3 Mar 26, 2024
1.0.0-rc.1 Feb 6, 2024
0.12.15 Mar 15, 2024
0.12.10 Dec 14, 2023
0.9.1 Jul 21, 2022

#601 in Database interfaces

Download history 21628/week @ 2024-01-03 24133/week @ 2024-01-10 26335/week @ 2024-01-17 31190/week @ 2024-01-24 26738/week @ 2024-01-31 28047/week @ 2024-02-07 21595/week @ 2024-02-14 23103/week @ 2024-02-21 30293/week @ 2024-02-28 32179/week @ 2024-03-06 33263/week @ 2024-03-13 27224/week @ 2024-03-20 37878/week @ 2024-03-27 35983/week @ 2024-04-03 29056/week @ 2024-04-10 23188/week @ 2024-04-17

131,426 downloads per month
Used in 65 crates (27 directly)

MIT/Apache

1MB
20K 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
    
  • 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

~11–29MB
~416K SLoC