From f65340680a57506dddbd481662490779e54dd132 Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Wed, 26 Oct 2022 17:01:58 +0800 Subject: [PATCH] [cli] FIXUP - correctly generate entity with Postgres Enum field (#1153) --- sea-orm-cli/Cargo.toml | 2 +- sea-orm-migration/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sea-orm-cli/Cargo.toml b/sea-orm-cli/Cargo.toml index 19810f197..70a645ff4 100644 --- a/sea-orm-cli/Cargo.toml +++ b/sea-orm-cli/Cargo.toml @@ -35,7 +35,7 @@ clap = { version = "^3.2", features = ["env", "derive"] } dotenvy = { version = "^0.15", optional = true } async-std = { version = "^1.9", features = [ "attributes", "tokio1" ], optional = true } sea-orm-codegen = { version = "^0.10.0", path = "../sea-orm-codegen", optional = true } -sea-schema = { version = "^0.10.1" } +sea-schema = { version = "^0.10.2", git = "https://github.com/SeaQL/sea-schema" } sqlx = { version = "^0.6", default-features = false, features = [ "mysql", "postgres" ], optional = true } tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing = { version = "0.1" } diff --git a/sea-orm-migration/Cargo.toml b/sea-orm-migration/Cargo.toml index 7782c881a..89fe83ecb 100644 --- a/sea-orm-migration/Cargo.toml +++ b/sea-orm-migration/Cargo.toml @@ -25,7 +25,7 @@ clap = { version = "^3.2", features = ["env", "derive"] } dotenvy = { version = "^0.15" } sea-orm = { version = "^0.10.0", path = "../", default-features = false, features = ["macros"] } sea-orm-cli = { version = "^0.10.0", path = "../sea-orm-cli", default-features = false } -sea-schema = { version = "^0.10.0" } +sea-schema = { version = "^0.10.2", git = "https://github.com/SeaQL/sea-schema" } tracing = { version = "0.1", features = ["log"] } tracing-subscriber = { version = "0.3", features = ["env-filter"] }