34 lines
768 B
Rust
34 lines
768 B
Rust
|
//! `SeaORM` Entity. Generated by sea-orm-codegen 0.10.6
|
||
|
|
||
|
use sea_orm::entity::prelude::*;
|
||
|
|
||
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq)]
|
||
|
#[sea_orm(table_name = "credits")]
|
||
|
pub struct Model {
|
||
|
#[sea_orm(primary_key)]
|
||
|
pub id: i32,
|
||
|
pub credits: u64,
|
||
|
#[sea_orm(unique)]
|
||
|
pub user_id: u64,
|
||
|
}
|
||
|
|
||
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
||
|
pub enum Relation {
|
||
|
#[sea_orm(
|
||
|
belongs_to = "super::user::Entity",
|
||
|
from = "Column::UserId",
|
||
|
to = "super::user::Column::Id",
|
||
|
on_update = "NoAction",
|
||
|
on_delete = "NoAction"
|
||
|
)]
|
||
|
User,
|
||
|
}
|
||
|
|
||
|
impl Related<super::user::Entity> for Entity {
|
||
|
fn to() -> RelationDef {
|
||
|
Relation::User.def()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl ActiveModelBehavior for ActiveModel {}
|