sea-orm-codegen 2.0.0-rc.39

Code Generator for SeaORM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! SeaORM Entity. Generated by sea-orm-codegen 0.1.0

use sea_orm::entity::prelude::*;

#[sea_orm::model]
#[derive(Clone, Debug, PartialEq, Eq, DeriveEntityModel)]
#[sea_orm(table_name = "filling")]
pub struct Model {
    #[sea_orm(primary_key)]
    pub id: i32,
    pub name: String,
    #[sea_orm(has_many, via = "cake_filling")]
    pub cakes: HasMany<super::cake::Entity> ,
}

impl ActiveModelBehavior for ActiveModel {}