98 lines
2.7 KiB
Rust
98 lines
2.7 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 = "module_members")]
|
|
pub struct Model {
|
|
pub created_at: DateTimeWithTimeZone,
|
|
pub updated_at: DateTimeWithTimeZone,
|
|
#[sea_orm(primary_key, auto_increment = false)]
|
|
pub id: Uuid,
|
|
pub created_by_id: Option<Uuid>,
|
|
pub member_id: Uuid,
|
|
pub module_id: Uuid,
|
|
pub project_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::modules::Entity",
|
|
from = "Column::ModuleId",
|
|
to = "super::modules::Column::Id",
|
|
on_update = "NoAction",
|
|
on_delete = "NoAction"
|
|
)]
|
|
Modules2,
|
|
#[sea_orm(
|
|
belongs_to = "super::modules::Entity",
|
|
from = "Column::ModuleId",
|
|
to = "super::modules::Column::Id",
|
|
on_update = "NoAction",
|
|
on_delete = "NoAction"
|
|
)]
|
|
Modules1,
|
|
#[sea_orm(
|
|
belongs_to = "super::projects::Entity",
|
|
from = "Column::ProjectId",
|
|
to = "super::projects::Column::Id",
|
|
on_update = "NoAction",
|
|
on_delete = "NoAction"
|
|
)]
|
|
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"
|
|
)]
|
|
Users3,
|
|
#[sea_orm(
|
|
belongs_to = "super::users::Entity",
|
|
from = "Column::MemberId",
|
|
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,
|
|
#[sea_orm(
|
|
belongs_to = "super::workspaces::Entity",
|
|
from = "Column::WorkspaceId",
|
|
to = "super::workspaces::Column::Id",
|
|
on_update = "NoAction",
|
|
on_delete = "NoAction"
|
|
)]
|
|
Workspaces2,
|
|
#[sea_orm(
|
|
belongs_to = "super::workspaces::Entity",
|
|
from = "Column::WorkspaceId",
|
|
to = "super::workspaces::Column::Id",
|
|
on_update = "NoAction",
|
|
on_delete = "NoAction"
|
|
)]
|
|
Workspaces1,
|
|
}
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|