JPA ERROR: relation does not exist
Postgresql converts table and column names which are not double quoted to lower case. Change
@Table(name = "ContactList")
to
@Table(name = "contactlist")
Postgresql converts table and column names which are not double quoted to lower case. Change
@Table(name = "ContactList")
to
@Table(name = "contactlist")