[BAEL-2808] Last fix

This commit is contained in:
dupirefr 2020-04-01 23:10:07 +02:00
parent aebba04be7
commit daab2b383f
3 changed files with 0 additions and 3 deletions

View File

@ -1 +0,0 @@
create table person (id int8 not null, firstname varchar(255), last_name varchar(255), primary key (id))

View File

@ -9,7 +9,6 @@ public class Person {
@Id @Id
private Long id; private Long id;
@Column(name = "FIRSTNAME")
private String firstName; private String firstName;
private String lastName; private String lastName;

View File

@ -1 +0,0 @@
create table "PERSON" ("ID" int8 not null, "FIRSTNAME" varchar(255), "LAST_NAME" varchar(255), primary key ("ID"))