Bumps [ts-rs](https://github.com/Aleph-Alpha/ts-rs) from 10.1.0 to 11.1.0. - [Release notes](https://github.com/Aleph-Alpha/ts-rs/releases) - [Changelog](https://github.com/Aleph-Alpha/ts-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/Aleph-Alpha/ts-rs/compare/v10.1.0...v11.1.0) --- updated-dependencies: - dependency-name: ts-rs dependency-version: 11.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> |
||
|---|---|---|
| .. | ||
| src | ||
| .dockerignore | ||
| .env | ||
| build.rs | ||
| Cargo.lock | ||
| Cargo.toml | ||
| config-e2e.yml | ||
| Dockerfile | ||
| README.md | ||
| rust-toolchain.toml | ||
Sync server
Creating/resetting the Database for development
rm -rf db.sqlite*
sqlx database create --database-url sqlite://db.sqlite3
sqlx migrate run --source src/app_state/database/migrations --database-url sqlite://db.sqlite3
cargo sqlx prepare --workspace
Updating the DB schema through a migration
sqlx migrate add --source src/app_state/database/migrations <name>
sqlx migrate run --source src/app_state/database/migrations --database-url sqlite://db.sqlite3