jet/crates/entities/src/github_issue_syncs.rs

115 lines
3.2 KiB
Rust
Raw Normal View History

2024-01-23 12:29:19 +01:00
//! `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 {
2024-02-10 11:03:40 +01:00
#[sea_orm(has_many = "super::github_comment_syncs::Entity")]
GithubCommentSyncs,
#[sea_orm(
belongs_to = "super::github_repository_syncs::Entity",
from = "Column::RepositorySyncId",
to = "super::github_repository_syncs::Column::Id",
on_update = "NoAction",
on_delete = "NoAction"
)]
GithubRepositorySyncs,
2024-01-23 12:29:19 +01:00
#[sea_orm(
belongs_to = "super::issues::Entity",
from = "Column::IssueId",
to = "super::issues::Column::Id",
on_update = "NoAction",
on_delete = "NoAction"
)]
2024-02-10 11:03:40 +01:00
Issues2,
#[sea_orm(
belongs_to = "super::issues::Entity",
from = "Column::IssueId",
to = "super::issues::Column::Id",
on_update = "NoAction",
on_delete = "NoAction"
)]
Issues1,
2024-01-23 12:29:19 +01:00
#[sea_orm(
belongs_to = "super::projects::Entity",
from = "Column::ProjectId",
to = "super::projects::Column::Id",
on_update = "NoAction",
on_delete = "NoAction"
)]
2024-02-10 11:03:40 +01:00
Projects2,
#[sea_orm(
belongs_to = "super::projects::Entity",
from = "Column::ProjectId",
to = "super::projects::Column::Id",
on_update = "NoAction",
on_delete = "NoAction"
)]
Projects1,
#[sea_orm(
belongs_to = "super::users::Entity",
from = "Column::CreatedById",
to = "super::users::Column::Id",
on_update = "NoAction",
on_delete = "NoAction"
)]
Users2,
#[sea_orm(
belongs_to = "super::users::Entity",
from = "Column::UpdatedById",
to = "super::users::Column::Id",
on_update = "NoAction",
on_delete = "NoAction"
)]
Users1,
2024-01-23 12:29:19 +01:00
#[sea_orm(
belongs_to = "super::workspaces::Entity",
from = "Column::WorkspaceId",
to = "super::workspaces::Column::Id",
on_update = "NoAction",
on_delete = "NoAction"
)]
2024-02-10 11:03:40 +01:00
Workspaces2,
#[sea_orm(
belongs_to = "super::workspaces::Entity",
from = "Column::WorkspaceId",
to = "super::workspaces::Column::Id",
on_update = "NoAction",
on_delete = "NoAction"
)]
Workspaces1,
2024-01-23 12:29:19 +01:00
}
2024-02-10 11:03:40 +01:00
impl Related<super::github_comment_syncs::Entity> for Entity {
2024-01-23 12:29:19 +01:00
fn to() -> RelationDef {
2024-02-10 11:03:40 +01:00
Relation::GithubCommentSyncs.def()
2024-01-23 12:29:19 +01:00
}
}
2024-02-10 11:03:40 +01:00
impl Related<super::github_repository_syncs::Entity> for Entity {
2024-01-23 12:29:19 +01:00
fn to() -> RelationDef {
2024-02-10 11:03:40 +01:00
Relation::GithubRepositorySyncs.def()
2024-01-23 12:29:19 +01:00
}
}
impl ActiveModelBehavior for ActiveModel {}