52 lines
1.3 KiB
Rust
52 lines
1.3 KiB
Rust
use sea_orm::entity::prelude::*;
|
|
|
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel)]
|
|
#[sea_orm(table_name = "folder")]
|
|
pub struct Model {
|
|
#[sea_orm(primary_key)]
|
|
pub id: i32,
|
|
pub name: String,
|
|
#[sea_orm(unique)]
|
|
pub path: String,
|
|
pub git_branch: Option<String>,
|
|
pub default_agent_type: Option<String>,
|
|
pub last_opened_at: DateTimeUtc,
|
|
pub created_at: DateTimeUtc,
|
|
pub updated_at: DateTimeUtc,
|
|
pub deleted_at: Option<DateTimeUtc>,
|
|
pub is_open: bool,
|
|
pub parent_branch: Option<String>,
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
pub enum Relation {
|
|
#[sea_orm(has_many = "super::conversation::Entity")]
|
|
Conversations,
|
|
|
|
#[sea_orm(has_many = "super::folder_opened_conversation::Entity")]
|
|
OpenedConversations,
|
|
|
|
#[sea_orm(has_many = "super::folder_command::Entity")]
|
|
FolderCommands,
|
|
}
|
|
|
|
impl Related<super::conversation::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::Conversations.def()
|
|
}
|
|
}
|
|
|
|
impl Related<super::folder_opened_conversation::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::OpenedConversations.def()
|
|
}
|
|
}
|
|
|
|
impl Related<super::folder_command::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::FolderCommands.def()
|
|
}
|
|
}
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|