I have the following two annotated classes that I use to build a graph:
@Entity @Table(name = \"Edge\") public class Edge { /* some code omitted for brev
Have you tried
@Column(name = "ixNodeTo", insertable = false, updatable = false)