You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
853 B

//! `SeaORM` Entity. Generated by sea-orm-codegen 0.11.3
use sea_orm::entity::prelude::*;
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq, Serialize, Deserialize)]
#[sea_orm(table_name = "click")]
pub struct Model {
#[sea_orm(primary_key)]
#[serde(skip_deserializing)]
pub id: i32,
pub time: Option<DateTime>,
pub link_id: Option<i32>,
}
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
pub enum Relation {
#[sea_orm(
belongs_to = "super::link::Entity",
from = "Column::LinkId",
to = "super::link::Column::Id",
on_update = "Cascade",
on_delete = "Cascade"
)]
Link,
}
impl Related<super::link::Entity> for Entity {
fn to() -> RelationDef {
Relation::Link.def()
}
}
impl ActiveModelBehavior for ActiveModel {}