From: <fab...@us...> - 2009-03-29 04:12:23
|
Revision: 4163 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=4163&view=rev Author: fabiomaulo Date: 2009-03-29 04:12:21 +0000 (Sun, 29 Mar 2009) Log Message: ----------- Minor Modified Paths: -------------- trunk/nhibernate/src/NHibernate/Dialect/Dialect.cs Modified: trunk/nhibernate/src/NHibernate/Dialect/Dialect.cs =================================================================== --- trunk/nhibernate/src/NHibernate/Dialect/Dialect.cs 2009-03-28 22:26:18 UTC (rev 4162) +++ trunk/nhibernate/src/NHibernate/Dialect/Dialect.cs 2009-03-29 04:12:21 UTC (rev 4163) @@ -625,7 +625,7 @@ public virtual string GetAddForeignKeyConstraintString(string constraintName, string[] foreignKey, string referencedTable, string[] primaryKey, bool referencesPrimaryKey) { - StringBuilder res = new StringBuilder(30); + var res = new StringBuilder(200); res.Append(" add constraint ") .Append(constraintName) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |