//! `SeaORM` Entity. Generated by sea-orm-codegen 0.10.7 use sea_orm::entity::prelude::*; #[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq)] #[sea_orm(table_name = "user_group_joining")] pub struct Model { #[sea_orm(primary_key, auto_increment = false)] pub id: String, #[sea_orm(column_name = "createdAt")] pub created_at: DateTimeWithTimeZone, #[sea_orm(column_name = "userId")] pub user_id: String, #[sea_orm(column_name = "userGroupId")] pub user_group_id: String, } #[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)] pub enum Relation { #[sea_orm(has_many = "super::antenna::Entity")] Antenna, #[sea_orm( belongs_to = "super::user::Entity", from = "Column::UserId", to = "super::user::Column::Id", on_update = "NoAction", on_delete = "Cascade" )] User, #[sea_orm( belongs_to = "super::user_group::Entity", from = "Column::UserGroupId", to = "super::user_group::Column::Id", on_update = "NoAction", on_delete = "Cascade" )] UserGroup, } impl Related for Entity { fn to() -> RelationDef { Relation::Antenna.def() } } impl Related for Entity { fn to() -> RelationDef { Relation::User.def() } } impl Related for Entity { fn to() -> RelationDef { Relation::UserGroup.def() } } impl ActiveModelBehavior for ActiveModel {}