remove path_cache

This commit is contained in:
2025-10-17 17:42:20 +02:00
parent d003f0783d
commit 757536c277
4 changed files with 1 additions and 53 deletions
-2
View File
@@ -30,7 +30,6 @@ pub struct Folder {
pub id: Uuid,
pub name: String,
pub parent_id: Option<Uuid>,
pub path_cache: Option<String>,
pub created_at: NaiveDateTime,
pub updated_at: NaiveDateTime,
}
@@ -41,7 +40,6 @@ pub struct NewFolder {
pub id: Uuid,
pub name: String,
pub parent_id: Option<Uuid>,
pub path_cache: Option<String>,
}
#[derive(Debug, Clone, Queryable, Identifiable, Associations)]