totally trivial test for autoquoting of initial _

that actually really does test that it does what it should :)
This commit is contained in:
Gavin King 2022-01-07 17:12:53 +01:00
parent 32f4122470
commit 032d224531
1 changed files with 3 additions and 0 deletions

View File

@ -141,6 +141,9 @@ public class QuoteTest extends BaseNonConfigCoreFunctionalTestCase {
@Id @GeneratedValue
@Column(name = "`ID`")
protected long id;
@Column(name = "_id")
protected long _id;
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "`ParentID`")