Migrate to org.hibernate.type.TextType from our custom LobType

This commit is contained in:
Tim Donohue
2023-05-03 14:47:16 -05:00
parent 7a209d228a
commit dac7ed2f09
6 changed files with 8 additions and 65 deletions

View File

@@ -60,7 +60,7 @@ public class MetadataValue implements ReloadableEntity<Integer> {
* The value of the field
*/
@Lob
@Type(type = "org.dspace.storage.rdbms.hibernate.DatabaseAwareLobType")
@Type(type = "org.hibernate.type.TextType")
@Column(name = "text_value")
private String value;