From: Michael D. <mik...@us...> - 2004-07-31 19:15:04
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8049/NHibernate.DomainModel Modified Files: Fo.hbm.xml Log Message: added a type and length for some properties. Index: Fo.hbm.xml =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel/Fo.hbm.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Fo.hbm.xml 3 Jun 2004 18:55:57 -0000 1.4 --- Fo.hbm.xml 31 Jul 2004 19:14:52 -0000 1.5 *************** *** 28,39 **** type="Int64" /> ! <!-- ! TODO: commented out because couldn't find a Type <property name="Serial" column="serial_" /> ! --> ! <property name="Buf" /> <property name="X" /> </class> --- 28,40 ---- type="Int64" /> ! <!-- TODO: need to specify System.Object - nh can't guess this one http://jira.nhibernate.org:8080/browse/NH-82--> <property name="Serial" column="serial_" + type="System.Object" + length="4000" /> ! ! <property name="Buf" length="500"/> <property name="X" /> </class> |