From 11dc58361978ccad4433775fec46180d7b284d54 Mon Sep 17 00:00:00 2001 From: Francesco Date: Wed, 11 Oct 2023 16:19:47 +0200 Subject: [PATCH] README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3d4186c..32345c0 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ for your database schema. No modifications required to your existing code (well, **Supported JPA annotations** - * Core: @Entity, @Table, @Column, @Lob, @Id + * Core: @Entity, @Table, @Column, @Lob, @Id, @GeneratedValue * Relationships: @OneToMany, @ManyToOne, @ManyToMany, @OneToOne The behaviour you specify with these annotations should be applied automatically by Spring Boot Database Admin as well. Keep in mind that using non-supported annotations will not necessarily result in an error, as they are simply ignored. Depending on what the annotation actually does, this could be just fine or result in an error if it interferes with something that Spring Boot Database Admin relies on. @@ -35,7 +35,7 @@ These are the supported types for fields inside your `@Entity` classes (excludin * Double, Float, Integer, Short, Byte, Character, BigDecimal, BigInteger * Boolean - * String + * String, UUID * Date, LocalDate, LocalDateTime, OffsetDateTime * byte[]