HHH-7717 Added a quoted "`data`" column name as this is a reserved word
in CUBRID.
This commit is contained in:
parent
339b4363b1
commit
d611f59832
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
<id name="id" type="long"><generator class="native"/></id>
|
<id name="id" type="long"><generator class="native"/></id>
|
||||||
|
|
||||||
<property name="data" type="string" not-null="true"/>
|
<property name="data" column="`data`" type="string" not-null="true"/>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Associations
|
Associations
|
||||||
|
@ -25,7 +25,7 @@
|
||||||
|
|
||||||
<id name="id" type="long"><generator class="native"/></id>
|
<id name="id" type="long"><generator class="native"/></id>
|
||||||
|
|
||||||
<property name="data" type="string" not-null="true"/>
|
<property name="data" column="`data`" type="string" not-null="true"/>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Associations
|
Associations
|
||||||
|
@ -47,7 +47,7 @@
|
||||||
|
|
||||||
<id name="id" type="long"><generator class="native"/></id>
|
<id name="id" type="long"><generator class="native"/></id>
|
||||||
|
|
||||||
<property name="data" type="string" not-null="true"/>
|
<property name="data" column="`data`" type="string" not-null="true"/>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Associations
|
Associations
|
||||||
|
|
Loading…
Reference in New Issue