From 831ec1d9897d4c821665067526bcc87b5762e557 Mon Sep 17 00:00:00 2001 From: Nils Schneider Date: Fri, 17 Oct 2025 17:56:09 +0200 Subject: [PATCH] fix --- backend/src/models.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/models.rs b/backend/src/models.rs index f3b8932..8473f86 100644 --- a/backend/src/models.rs +++ b/backend/src/models.rs @@ -85,8 +85,8 @@ pub struct DocumentVersion { pub size_bytes: i64, pub checksum: String, pub created_at: NaiveDateTime, - pub metadata: serde_json::Value, pub operations_summary: serde_json::Value, + pub metadata: serde_json::Value, } #[derive(Debug, Insertable)] @@ -98,8 +98,8 @@ pub struct NewDocumentVersion { pub s3_key: String, pub size_bytes: i64, pub checksum: String, - pub metadata: serde_json::Value, pub operations_summary: serde_json::Value, + pub metadata: serde_json::Value, } #[derive(Debug, Clone, Queryable, Identifiable, Associations)]