2024-01-14 16:10:33 +00:00
..
2023-07-30 05:08:28 +08:00
2024-01-14 16:10:33 +00:00
2023-07-30 05:08:28 +08:00

Bakery Schema

Assume the database is named bakery:

export DATABASE_URL=mysql://sea:sea@localhost/bakery

Re-generate entities

sea-orm-cli generate entity --output-dir src/entity

Running Migrator CLI

  • Apply all pending migrations
    cargo run
    
    cargo run -- up
    
  • Apply first 10 pending migrations
    cargo run -- up -n 10
    
  • Rollback last applied migrations
    cargo run -- down
    
  • Rollback last 10 applied migrations
    cargo run -- down -n 10
    
  • Drop all tables from the database, then reapply all migrations
    cargo run -- fresh
    
  • Rollback all applied migrations, then reapply all migrations
    cargo run -- refresh
    
  • Rollback all applied migrations
    cargo run -- reset
    
  • Check the status of all migrations
    cargo run -- status