Jean-Francois Leveque

Suppression @Column de l'Id de Country

......@@ -10,7 +10,6 @@ import javax.persistence.*;
public class Country /* extends org.roliste.data.DbEntity */ {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name="COUNTRY_ID")
private int countryId;
private String countryName;
......