From b64969fc6acd42f6f8df0bfe76af46ba4bb4a7d4 Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Wed, 26 Oct 2022 11:40:59 +0800 Subject: [PATCH] FIXUP - correctly generate entity with Postgres Enum field --- sea-orm-cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sea-orm-cli/Cargo.toml b/sea-orm-cli/Cargo.toml index 19810f1972..4d914cb25b 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.1", git = "https://github.com/SeaQL/sea-schema", branch = "fix-parsing-user-define-type" } sqlx = { version = "^0.6", default-features = false, features = [ "mysql", "postgres" ], optional = true } tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing = { version = "0.1" }