Skip to content

Commit

Permalink
UUID field type mapping - PostgreSQLPlatform (#2284)
Browse files Browse the repository at this point in the history
Signed-off-by: Radek Felcman <[email protected]>
(cherry picked from commit 28ffe73)
  • Loading branch information
rfelcman committed Dec 13, 2024
1 parent 3e1380a commit ee150db
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,8 @@ protected Hashtable<Class<?>, FieldTypeDefinition> buildFieldTypes() {
fieldTypeMapping.put(java.time.OffsetDateTime.class, new FieldTypeDefinition("TIMESTAMP", false));
fieldTypeMapping.put(java.time.OffsetTime.class, new FieldTypeDefinition("TIME", false));

fieldTypeMapping.put(java.util.UUID.class, new FieldTypeDefinition("UUID", false));

return fieldTypeMapping;
}

Expand Down

0 comments on commit ee150db

Please sign in to comment.