Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27678
Modified Files:
FooBar.hbm.xml
Log Message:
added length to the "clazz" column because all the type info is being stored
there also, not just the class name.
Index: FooBar.hbm.xml
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel/FooBar.hbm.xml,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** FooBar.hbm.xml 19 Jul 2004 03:02:33 -0000 1.11
--- FooBar.hbm.xml 28 Jul 2004 15:09:03 -0000 1.12
***************
*** 197,201 ****
</component>
<any name="Object" id-type="Int64" cascade="all">
! <column name="clazz" length="100"/>
<column name="gen_id"/>
</any>
--- 197,205 ----
</component>
<any name="Object" id-type="Int64" cascade="all">
! <!--
! made clazz 200 instead of 100 because of all the extra info stored
! such as assembly, key, culture
! -->
! <column name="clazz" length="200"/>
<column name="gen_id"/>
</any>
|