Reject duplicate guest documents by hash
All checks were successful
build-and-deploy / build-deploy (push) Successful in 31s

This commit is contained in:
androidlover5842
2026-01-31 00:19:58 +05:30
parent bb2c40ed71
commit 0c32ff4102
4 changed files with 85 additions and 1 deletions

View File

@@ -44,6 +44,9 @@ class GuestDocument(
@Column(name = "storage_path", nullable = false)
var storagePath: String,
@Column(name = "file_hash")
var fileHash: String? = null,
@Column(name = "extracted_data", columnDefinition = "jsonb")
@JdbcTypeCode(SqlTypes.JSON)
var extractedData: String? = null,