We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 387b07e commit 28fdb30Copy full SHA for 28fdb30
sea-orm-codegen/src/entity/writer.rs
@@ -3,6 +3,7 @@ use heck::ToUpperCamelCase;
3
use proc_macro2::TokenStream;
4
use quote::{format_ident, quote};
5
use std::{collections::BTreeMap, str::FromStr};
6
+use sea_query::ColumnType;
7
use syn::{punctuated::Punctuated, token::Comma};
8
use tracing::info;
9
@@ -754,6 +755,11 @@ impl EntityWriter {
754
755
attrs.push(quote! { nullable });
756
}
757
};
758
+ if let ColumnType::Custom(typ) = &col.col_type {
759
+ let type_string = typ.to_string();
760
+ attrs.push(quote! { select_as = "text" });
761
+ attrs.push(quote! { save_as = #type_string });
762
+ }
763
if col.unique {
764
attrs.push(quote! { unique });
765
0 commit comments