You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ol...@apache.org on 2008/09/11 22:27:20 UTC

svn commit: r694461 - /continuum/trunk/continuum-model/src/main/resources/package-mssql.orm

Author: olamy
Date: Thu Sep 11 13:27:18 2008
New Revision: 694461

URL: http://svn.apache.org/viewvc?rev=694461&view=rev
Log:
[CONTINUUM-1878] MS SQL Server size of NVARCHAR defect
Submitted by Jimmy Conway


Modified:
    continuum/trunk/continuum-model/src/main/resources/package-mssql.orm

Modified: continuum/trunk/continuum-model/src/main/resources/package-mssql.orm
URL: http://svn.apache.org/viewvc/continuum/trunk/continuum-model/src/main/resources/package-mssql.orm?rev=694461&r1=694460&r2=694461&view=diff
==============================================================================
--- continuum/trunk/continuum-model/src/main/resources/package-mssql.orm (original)
+++ continuum/trunk/continuum-model/src/main/resources/package-mssql.orm Thu Sep 11 13:27:18 2008
@@ -6,29 +6,29 @@
   <package name="org.apache.maven.continuum.model.project">
     <class name="ProjectGroup">
       <field name="description">
-        <column length="8000" jdbc-type="VARCHAR"/>
+        <column length="4000" jdbc-type="VARCHAR"/>
       </field>
     </class>
     <class name="Project">
       <field name="description">
-        <column length="8000" jdbc-type="VARCHAR"/>
+        <column length="4000" jdbc-type="VARCHAR"/>
       </field>
     </class>
     <class name="BuildResult">
       <field name="error">
-        <column length="8000" jdbc-type="VARCHAR"/>
+        <column length="4000" jdbc-type="VARCHAR"/>
       </field>
     </class>
   </package>
   <package name="org.apache.maven.continuum.model.scm">
     <class name="ScmResult">
       <field name="exception">
-        <column name="exceptionstring" length="8000" jdbc-type="VARCHAR"/>
+        <column name="exceptionstring" length="4000" jdbc-type="VARCHAR"/>
       </field>
     </class>
     <class name="ChangeSet">
       <field name="comment">
-        <column name="changecomment" length="8000" jdbc-type="VARCHAR"/>
+        <column name="changecomment" length="4000" jdbc-type="VARCHAR"/>
       </field>
     </class>
   </package>