cognee_database/entities/
graph_sync_checkpoint.rs1use sea_orm::entity::prelude::*;
7use serde::{Deserialize, Serialize};
8
9#[derive(Clone, Debug, PartialEq, Eq, DeriveEntityModel, Serialize, Deserialize)]
10#[sea_orm(table_name = "graph_sync_checkpoints")]
11pub struct Model {
12 #[sea_orm(primary_key, auto_increment = false)]
15 pub key: String,
16 pub ts: DateTimeUtc,
18}
19
20#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
21pub enum Relation {}
22
23impl ActiveModelBehavior for ActiveModel {}