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)]