Chris Tsang 7af76fc753
Seaography example WIP (#1788)
* Seaography example WIP

* Seaography example

* Screenshot
2023-07-30 05:08:28 +08:00

51 lines
1.2 KiB
Rust

//! `SeaORM` Entity. Generated by sea-orm-codegen 0.12.1
use sea_orm::entity::prelude::*;
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq)]
#[sea_orm(table_name = "baker")]
pub struct Model {
#[sea_orm(primary_key)]
pub id: i32,
pub name: String,
pub contact: String,
pub bakery_id: Option<i32>,
}
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
pub enum Relation {
#[sea_orm(
belongs_to = "super::bakery::Entity",
from = "Column::BakeryId",
to = "super::bakery::Column::Id",
on_update = "Cascade",
on_delete = "Cascade"
)]
Bakery,
#[sea_orm(has_many = "super::cake_baker::Entity")]
CakeBaker,
}
impl Related<super::bakery::Entity> for Entity {
fn to() -> RelationDef {
Relation::Bakery.def()
}
}
impl Related<super::cake_baker::Entity> for Entity {
fn to() -> RelationDef {
Relation::CakeBaker.def()
}
}
impl Related<super::cake::Entity> for Entity {
fn to() -> RelationDef {
super::cake_baker::Relation::Cake.def()
}
fn via() -> Option<RelationDef> {
Some(super::cake_baker::Relation::Baker.def().rev())
}
}
impl ActiveModelBehavior for ActiveModel {}