Update sea-schema

This commit is contained in:
Chris Tsang 2022-05-09 21:02:53 +08:00
parent 25f3db731b
commit 2794410a08
3 changed files with 5 additions and 2 deletions

View File

@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Enhancements
* Add max_connections option to CLI https://github.com/SeaQL/sea-orm/pull/670
### Breaking changes
* `sea_schema::migration::prelude` should be replaced by `sea_orm_migration::prelude`
## 0.7.1 - 2022-03-26
* Fix sea-orm-cli error

View File

@ -33,7 +33,7 @@ clap = { version = "^2.33.3" }
dotenv = { version = "^0.15" }
async-std = { version = "^1.9", features = [ "attributes", "tokio1" ] }
sea-orm-codegen = { version = "^0.7.0", path = "../sea-orm-codegen", optional = true }
sea-schema = { git = "https://github.com/SeaQL/sea-schema", branch = "master" }
sea-schema = { version = "^0.8.0" }
sqlx = { version = "^0.5", default-features = false, features = [ "mysql", "postgres" ], optional = true }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing = { version = "0.1" }

View File

@ -24,7 +24,7 @@ clap = { version = "^2.33" }
dotenv = { version = "^0.15" }
sea-orm = { path = "../", default-features = false, features = ["macros"] }
sea-orm-cli = { path = "../sea-orm-cli", default-features = false }
sea-schema = { git = "https://github.com/SeaQL/sea-schema", branch = "master" }
sea-schema = { version = "^0.8.0" }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }