42 lines
992 B
Rust
42 lines
992 B
Rust
//! SeaORM Entity. Generated by sea-orm-codegen 0.9.2
|
|
|
|
use sea_orm::entity::prelude::*;
|
|
|
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel)]
|
|
#[sea_orm(table_name = "zone")]
|
|
pub struct Model {
|
|
#[sea_orm(primary_key, auto_increment = false)]
|
|
pub id: String,
|
|
pub owner: String,
|
|
#[sea_orm(unique)]
|
|
pub origin: String,
|
|
pub delegated: bool,
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
pub enum Relation {
|
|
#[sea_orm(
|
|
belongs_to = "super::team::Entity",
|
|
from = "Column::Owner",
|
|
to = "super::team::Column::Id",
|
|
on_update = "NoAction",
|
|
on_delete = "Cascade"
|
|
)]
|
|
Team,
|
|
#[sea_orm(has_many = "super::record::Entity")]
|
|
Record,
|
|
}
|
|
|
|
impl Related<super::team::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::Team.def()
|
|
}
|
|
}
|
|
|
|
impl Related<super::record::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::Record.def()
|
|
}
|
|
}
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|