* progress (WIP) * WIP * WIP, finished structure except impl programming * WIP * revert event_trigger modification * adding tests and mods * completed derive value type * fixed tests, adjusted code position and completed error messages * column type commit * added attribute array_type and column_type for specification * renamed items and files, and removed debug messages * move attributes outside of the wrapper struct * refactored code for type matching, and restructured code in test cases * clippy fix * fix(doc): fix salvo framework name (#1731) Co-authored-by: 黄景祥 <jingxiang.huang@baishancloud.com> * fmt * changed json_vec_test to use DeriveValueType * fmt * Revert "changed json_vec_test to use DeriveValueType" This reverts commit 92bbf3b6e4eca72e0af0af35776aeec3ee035602. * added test cases for inserting StringVec in a model * fmt * Try non-public wrapped type * Refactoring --------- Co-authored-by: joelhy <joelhy@gmail.com> Co-authored-by: 黄景祥 <jingxiang.huang@baishancloud.com> Co-authored-by: Billy Chan <ccw.billy.123@gmail.com>
52 lines
1.5 KiB
Rust
52 lines
1.5 KiB
Rust
pub mod active_enum;
|
|
pub mod active_enum_child;
|
|
pub mod applog;
|
|
pub mod binary;
|
|
pub mod bits;
|
|
pub mod byte_primary_key;
|
|
pub mod collection;
|
|
pub mod collection_expanded;
|
|
pub mod custom_active_model;
|
|
pub mod dyn_table_name_lazy_static;
|
|
pub mod edit_log;
|
|
pub mod event_trigger;
|
|
pub mod insert_default;
|
|
pub mod json_struct;
|
|
pub mod json_vec;
|
|
pub mod metadata;
|
|
pub mod pi;
|
|
pub mod repository;
|
|
pub mod satellite;
|
|
pub mod schema;
|
|
pub mod sea_orm_active_enums;
|
|
pub mod self_join;
|
|
pub mod teas;
|
|
pub mod transaction_log;
|
|
pub mod uuid_fmt;
|
|
pub mod value_type;
|
|
|
|
pub use active_enum::Entity as ActiveEnum;
|
|
pub use active_enum_child::Entity as ActiveEnumChild;
|
|
pub use applog::Entity as Applog;
|
|
pub use binary::Entity as Binary;
|
|
pub use bits::Entity as Bits;
|
|
pub use byte_primary_key::Entity as BytePrimaryKey;
|
|
pub use collection::Entity as Collection;
|
|
pub use collection_expanded::Entity as CollectionExpanded;
|
|
pub use dyn_table_name_lazy_static::Entity as DynTableNameLazyStatic;
|
|
pub use edit_log::Entity as EditLog;
|
|
pub use event_trigger::Entity as EventTrigger;
|
|
pub use insert_default::Entity as InsertDefault;
|
|
pub use json_struct::Entity as JsonStruct;
|
|
pub use json_vec::Entity as JsonVec;
|
|
pub use metadata::Entity as Metadata;
|
|
pub use pi::Entity as Pi;
|
|
pub use repository::Entity as Repository;
|
|
pub use satellite::Entity as Satellite;
|
|
pub use schema::*;
|
|
pub use sea_orm_active_enums::*;
|
|
pub use self_join::Entity as SelfJoin;
|
|
pub use teas::Entity as Teas;
|
|
pub use transaction_log::Entity as TransactionLog;
|
|
pub use uuid_fmt::Entity as UuidFmt;
|