We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22f858c commit d213d67Copy full SHA for d213d67
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/lazytoone/Flight.java
@@ -6,6 +6,7 @@
6
*/
7
package org.hibernate.orm.test.mapping.lazytoone;
8
9
+import javax.persistence.Column;
10
import javax.persistence.Entity;
11
import javax.persistence.Id;
12
import javax.persistence.ManyToOne;
@@ -24,6 +25,7 @@
24
25
public class Flight {
26
@Id
27
private Integer id;
28
+ @Column(name = "flight_number")
29
private String number;
30
31
@ManyToOne( fetch = LAZY )
0 commit comments