Skip to content

Commit

Permalink
HHH-10367 : Fix more DB reserved words used by tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gbadner committed Dec 9, 2015
1 parent e42ca85 commit 60625b1
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -19,7 +19,7 @@

<class name="Person">
<id name="name"/>
<version name="version"/>
<version name="version" column="`version`"/>
<bag name="things"
inverse="true"
cascade="all,delete-orphan">
Expand All @@ -37,14 +37,14 @@

<class name="Thing">
<id name="description"/>
<version name="version"/>
<version name="version" column="`version`"/>
<property name="longDescription"/>
<many-to-one name="person"/>
</class>

<class name="Task">
<id name="description"/>
<version name="version"/>
<version name="version" column="`version`"/>
<many-to-one name="person"/>
</class>

Expand Down

0 comments on commit 60625b1

Please sign in to comment.