//! `SeaORM` Entity, @generated by sea-orm-codegen 2.0 use sea_orm::entity::prelude::*; use serde::{Deserialize, Serialize}; #[derive(Clone, Debug, PartialEq, Eq, DeriveEntityModel, Serialize, Deserialize)] #[sea_orm(table_name = "ssl_certificate")] pub struct Model { #[sea_orm(primary_key, auto_increment = false)] pub id: Uuid, pub name: String, pub cert_path: String, pub key_path: String, pub expiry_date: DateTime, } #[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)] pub enum Relation { #[sea_orm(has_many = "super::server_block::Entity")] ServerBlock, } impl Related for Entity { fn to() -> RelationDef { Relation::ServerBlock.def() } } impl ActiveModelBehavior for ActiveModel {}