sea-orm-codegen 2.0.0-rc.43

Code Generator for SeaORM
Documentation
//! 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 = "vendor")]
pub struct Model {
    #[sea_orm(primary_key)]
    pub id: i32,
    #[sea_orm(column_name = "_name_")]
    pub name: String,
    #[sea_orm(column_name = "fruitId")]
    pub fruit_id: Option<i32> ,
    #[sea_orm(belongs_to, from = "fruit_id", to = "id")]
    pub fruit: BelongsTo<Option<super::fruit::Entity>> ,
}

impl ActiveModelBehavior for ActiveModel {}