//! `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 = "following")] 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 = "followeeId")] pub followee_id: String, #[sea_orm(column_name = "followerId")] pub follower_id: String, #[sea_orm(column_name = "followerHost")] pub follower_host: Option, #[sea_orm(column_name = "followerInbox")] pub follower_inbox: Option, #[sea_orm(column_name = "followerSharedInbox")] pub follower_shared_inbox: Option, #[sea_orm(column_name = "followeeHost")] pub followee_host: Option, #[sea_orm(column_name = "followeeInbox")] pub followee_inbox: Option, #[sea_orm(column_name = "followeeSharedInbox")] pub followee_shared_inbox: Option, } #[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)] pub enum Relation { #[sea_orm( belongs_to = "super::user::Entity", from = "Column::FolloweeId", to = "super::user::Column::Id", on_update = "NoAction", on_delete = "Cascade" )] User2, #[sea_orm( belongs_to = "super::user::Entity", from = "Column::FollowerId", to = "super::user::Column::Id", on_update = "NoAction", on_delete = "Cascade" )] User1, } impl ActiveModelBehavior for ActiveModel {}