I'm trying to map a class with Hibernate annotations but it tells me that hibernate_sequence doesn't exist.
I use mysql.
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column()
private int id;
this is ho I've declared the auto_increment field. What I'm missing?