peer-group-grading/crates/migration
Mika ec08eb71f6
Some checks failed
ci/woodpecker/push/check_fmt Pipeline failed
WIP: changed erm
2025-04-02 14:28:00 +02:00
..
src fix ldap crate and create migration for localAuth 2025-04-01 12:30:04 +02:00
Cargo.toml add migration crate 2025-03-27 13:14:36 +01:00
erm.drawio WIP: changed erm 2025-04-02 14:28:00 +02:00
README.md run formater 2025-03-31 13:41:32 +02:00

Running Migrator CLI

  • Generate a new migration file
    cargo run -- generate MIGRATION_NAME
    
  • 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