Skip to content

Commit

Permalink
UUID field type mapping - PostgreSQLPlatform
Browse files Browse the repository at this point in the history
Signed-off-by: Radek Felcman <[email protected]>
  • Loading branch information
rfelcman committed Oct 21, 2024
1 parent 0d56cf6 commit 4fedc64
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,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 4fedc64

Please sign in to comment.