I solved this error by renaming field to the name without underscore.
@Column(name = "municipal_id", nullable = false)
private Integer municipalId; // <-- field was renamed
I solved this error by renaming field to the name without underscore.
@Column(name = "municipal_id", nullable = false)
private Integer municipalId; // <-- field was renamed