use sea_orm::entity::prelude::*; #[derive(Clone, Debug, PartialEq, DeriveEntityModel)] #[sea_orm(table_name = "chat_channel_sender_context")] pub struct Model { #[sea_orm(primary_key)] pub id: i32, pub channel_id: i32, pub sender_id: String, pub current_folder_id: Option, pub current_agent_type: Option, pub current_conversation_id: Option, pub current_connection_id: Option, pub auto_approve: bool, pub created_at: DateTimeUtc, pub updated_at: DateTimeUtc, } #[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)] pub enum Relation { #[sea_orm( belongs_to = "super::chat_channel::Entity", from = "Column::ChannelId", to = "super::chat_channel::Column::Id" )] ChatChannel, } impl Related for Entity { fn to() -> RelationDef { Relation::ChatChannel.def() } } impl ActiveModelBehavior for ActiveModel {}