71 lines
1.8 KiB
Rust
71 lines
1.8 KiB
Rust
|
//! `SeaORM` Entity. Generated by sea-orm-codegen 0.12.11
|
||
|
|
||
|
use sea_orm::entity::prelude::*;
|
||
|
use serde::{Deserialize, Serialize};
|
||
|
|
||
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq, Serialize, Deserialize)]
|
||
|
#[sea_orm(table_name = "github_issue_syncs")]
|
||
|
pub struct Model {
|
||
|
pub created_at: DateTimeWithTimeZone,
|
||
|
pub updated_at: DateTimeWithTimeZone,
|
||
|
#[sea_orm(primary_key, auto_increment = false)]
|
||
|
pub id: Uuid,
|
||
|
pub repo_issue_id: i64,
|
||
|
pub github_issue_id: i64,
|
||
|
pub issue_url: String,
|
||
|
pub created_by_id: Option<Uuid>,
|
||
|
pub issue_id: Uuid,
|
||
|
pub project_id: Uuid,
|
||
|
pub repository_sync_id: Uuid,
|
||
|
pub updated_by_id: Option<Uuid>,
|
||
|
pub workspace_id: Uuid,
|
||
|
}
|
||
|
|
||
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
||
|
pub enum Relation {
|
||
|
#[sea_orm(
|
||
|
belongs_to = "super::issues::Entity",
|
||
|
from = "Column::IssueId",
|
||
|
to = "super::issues::Column::Id",
|
||
|
on_update = "NoAction",
|
||
|
on_delete = "NoAction"
|
||
|
)]
|
||
|
Issues,
|
||
|
#[sea_orm(
|
||
|
belongs_to = "super::projects::Entity",
|
||
|
from = "Column::ProjectId",
|
||
|
to = "super::projects::Column::Id",
|
||
|
on_update = "NoAction",
|
||
|
on_delete = "NoAction"
|
||
|
)]
|
||
|
Projects,
|
||
|
#[sea_orm(
|
||
|
belongs_to = "super::workspaces::Entity",
|
||
|
from = "Column::WorkspaceId",
|
||
|
to = "super::workspaces::Column::Id",
|
||
|
on_update = "NoAction",
|
||
|
on_delete = "NoAction"
|
||
|
)]
|
||
|
Workspaces,
|
||
|
}
|
||
|
|
||
|
impl Related<super::issues::Entity> for Entity {
|
||
|
fn to() -> RelationDef {
|
||
|
Relation::Issues.def()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl Related<super::projects::Entity> for Entity {
|
||
|
fn to() -> RelationDef {
|
||
|
Relation::Projects.def()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl Related<super::workspaces::Entity> for Entity {
|
||
|
fn to() -> RelationDef {
|
||
|
Relation::Workspaces.def()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl ActiveModelBehavior for ActiveModel {}
|