Reduced text field sizes from 256 to 255 to cater for pre-MySQL5Dialect generating text columns

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@3664 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2006-09-03 21:56:37 +00:00
parent 3b225fd1f8
commit 0fa1d85631

View File

@@ -109,9 +109,9 @@
<!-- The app_source_idx index is used to find the app source -->
<!-- The look up is always the tripple, the service and method or just the method may be null -->
<property name="application" column="application" type="string" length="256" not-null="true" index="app_source_idx"/>
<property name="service" column="service" type="string" length="256" not-null="false" index="app_source_idx"/>
<property name="method" column="method" type="string" length="256" not-null="false" index="app_source_idx"/>
<property name="application" column="application" type="string" length="255" not-null="true" index="app_source_idx"/>
<property name="service" column="service" type="string" length="255" not-null="false" index="app_source_idx"/>
<property name="method" column="method" type="string" length="255" not-null="false" index="app_source_idx"/>
</class>