This commit is contained in:
2025-10-17 17:56:09 +02:00
parent 757536c277
commit 831ec1d989
+2 -2
View File
@@ -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)]