//! SeaORM Entity. Generated by sea-orm-codegen 0.9.3 use sea_orm::entity::prelude::*; #[derive(Clone, Debug, PartialEq, DeriveEntityModel)] #[sea_orm(table_name = "group_data")] pub struct Model { #[sea_orm(primary_key)] pub id: i64, #[sea_orm(column_type = "Text", nullable)] pub description: Option, #[sea_orm(column_type = "Text")] pub name: String, pub snapshot_id: i64, pub subscribers: i64, } #[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)] pub enum Relation { #[sea_orm( belongs_to = "super::snapshot::Entity", from = "Column::SnapshotId", to = "super::snapshot::Column::Id", on_update = "NoAction", on_delete = "Cascade" )] Snapshot, } impl Related for Entity { fn to() -> RelationDef { Relation::Snapshot.def() } } impl ActiveModelBehavior for ActiveModel {}