I have a model class that is mapped to a postgres database using hibernate. My model class is:
@Entity @Table(name=\"USER\") public class User { @Id @G
Try Dropping the table from pg admin console (drop table schema_name.table_name)and make sure your entity class is proper annotated.For example @Table(name = "table_name", schema = "schema_name") on entity class
drop table schema_name.table_name
@Table(name = "table_name", schema = "schema_name")