use sea_orm::entity::prelude::*; #[derive(Clone, Debug, PartialEq, Eq, DeriveEntityModel)] #[sea_orm(table_name = "invites")] pub struct Model { #[sea_orm(primary_key, auto_increment = false)] pub code: String, pub guild_id: Uuid, pub created_by_user_id: Uuid, pub created_at: DateTimeWithTimeZone, pub expires_at: Option, pub max_uses: Option, pub use_count: i32, } #[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)] pub enum Relation { #[sea_orm( belongs_to = "super::guilds::Entity", from = "Column::GuildId", to = "super::guilds::Column::Id" )] Guilds, #[sea_orm( belongs_to = "super::users::Entity", from = "Column::CreatedByUserId", to = "super::users::Column::Id" )] Users, } impl Related for Entity { fn to() -> RelationDef { Relation::Guilds.def() } } impl Related for Entity { fn to() -> RelationDef { Relation::Users.def() } } impl ActiveModelBehavior for ActiveModel {}