Set column type to longblob for encrypted_key field in entity/FileMetadata

This commit is contained in:
K
2025-07-03 17:06:12 +05:30
parent c5ff741f8c
commit a6325d5681
@@ -31,7 +31,7 @@ public class FileMetadata {
private byte[] iv;
@Lob
@Column(nullable = false, name = "encrypted_key")
@Column(nullable = false, name = "encrypted_key", columnDefinition = "LONGBLOB")
private byte[] encryptedKey;
@Column(nullable = false)