HHH-3621 - Making the 1_Version.hbm.xml and 2_Version.hbm.xml in schemaupdate consistent. The only difference should be the extra column in 2_Version, to test the update of the schema. For Branch_3_3

git-svn-id: https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3@16400 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Juraci Krohling 2009-04-22 11:12:04 +00:00
parent e11ff8dae8
commit fe97c4e070
2 changed files with 2 additions and 3 deletions

View File

@ -14,6 +14,6 @@
</id>
<property name="description"/>
</class>
</hibernate-mapping>

View File

@ -5,11 +5,10 @@
<hibernate-mapping package="org.hibernate.test.schemaupdate">
<class name="Version" schema="PUBLIC">
<class name="Version">
<id name="id">
<generator class="org.hibernate.id.TableHiLoGenerator">
<param name="table">uid_table</param>
<!-- <param name="schema">PUBLIC</param> -->
<param name="column">next_hi_value_column</param>
</generator>
</id>