mirror of
https://github.com/warp-tech/warpgate.git
synced 2025-09-13 10:04:30 +08:00
Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.1.2 to 1.2.2. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.1.2...1.2.2) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> |
||
---|---|---|
.. | ||
src | ||
Cargo.toml | ||
README.md |
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