//! `SeaORM` Entity, @generated by sea-orm-codegen 2.0.0-rc.9
use sea_orm::entity::prelude::*;
#[sea_orm::model]
#[derive(Clone, Debug, PartialEq, Eq, DeriveEntityModel)]
#[sea_orm(table_name = "customer")]
pub struct Model {
#[sea_orm(primary_key)]
pub id: i32,
pub name: String,
#[sea_orm(column_type = "Text", nullable)]
pub notes: Option<String>,
#[sea_orm(has_many)]
pub orders: HasMany<super::order::Entity>,
}
impl ActiveModelBehavior for ActiveModel {}