diff --git a/examples/rocket_example/migration/Cargo.toml b/examples/rocket_example/migration/Cargo.toml index 75ee4322..ea539dca 100644 --- a/examples/rocket_example/migration/Cargo.toml +++ b/examples/rocket_example/migration/Cargo.toml @@ -9,6 +9,6 @@ name = "migration" path = "src/lib.rs" [dependencies] -sea-schema = { git = "https://github.com/SeaQL/sea-schema.git", branch = "restructure-sea-query-dep", default-features = false, features = [ "migration", "debug-print" ] } +sea-schema = { git = "https://github.com/SeaQL/sea-schema.git", default-features = false, features = [ "migration", "debug-print" ] } entity = { path = "../entity" } rocket = { version = "0.5.0-rc.1" } diff --git a/sea-orm-cli/Cargo.toml b/sea-orm-cli/Cargo.toml index 2e2a6158..5080588d 100644 --- a/sea-orm-cli/Cargo.toml +++ b/sea-orm-cli/Cargo.toml @@ -22,7 +22,7 @@ clap = { version = "^2.33.3" } dotenv = { version = "^0.15" } async-std = { version = "^1.9", features = [ "attributes", "tokio1" ] } sea-orm-codegen = { version = "^0.5.0", path = "../sea-orm-codegen" } -sea-schema = { git = "https://github.com/SeaQL/sea-schema.git", branch = "restructure-sea-query-dep", default-features = false, features = [ +sea-schema = { git = "https://github.com/SeaQL/sea-schema.git", default-features = false, features = [ "debug-print", "sqlx-mysql", "sqlx-sqlite", diff --git a/sea-orm-cli/template/migration/Cargo.toml b/sea-orm-cli/template/migration/Cargo.toml index c55187a2..27f9f512 100644 --- a/sea-orm-cli/template/migration/Cargo.toml +++ b/sea-orm-cli/template/migration/Cargo.toml @@ -9,4 +9,4 @@ name = "migration" path = "src/lib.rs" [dependencies] -sea-schema = { git = "https://github.com/SeaQL/sea-schema.git", branch = "restructure-sea-query-dep", default-features = false, features = [ "migration", "debug-print" ] } +sea-schema = { git = "https://github.com/SeaQL/sea-schema.git", default-features = false, features = [ "migration", "debug-print" ] }