Skip to content

Commit 933f6e6

Browse files
committed
Generate select_as and save_as attributes for custom column types.
Fixes #1643
1 parent ac6c85f commit 933f6e6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

sea-orm-codegen/src/entity/writer.rs

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ use heck::ToUpperCamelCase;
33
use proc_macro2::TokenStream;
44
use quote::{format_ident, quote};
55
use std::{collections::BTreeMap, str::FromStr};
6+
use sea_query::ColumnType;
67
use syn::{punctuated::Punctuated, token::Comma};
78
use tracing::info;
89

@@ -754,6 +755,11 @@ impl EntityWriter {
754755
attrs.push(quote! { nullable });
755756
}
756757
};
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+
}
757763
if col.unique {
758764
attrs.push(quote! { unique });
759765
}

0 commit comments

Comments
 (0)