ALFCOM-2885 - WCM/AVM - modify mime_type length (to allow upload of MS Office 2007 docs)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@14846 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Jan Vonka
2009-06-23 09:28:11 +00:00
parent a8843c3374
commit 07e6ccf223
6 changed files with 62 additions and 2 deletions

View File

@@ -110,6 +110,7 @@
<ref bean="patch.db-V2.1-AuditPathIndex" /> <ref bean="patch.db-V2.1-AuditPathIndex" />
<ref bean="patch.db-V3.0-0-CreateActivitiesExtras" /> <ref bean="patch.db-V3.0-0-CreateActivitiesExtras" />
<ref bean="patch.db-V3.2-Remove-AVM-Issuer" /> <ref bean="patch.db-V3.2-Remove-AVM-Issuer" />
<ref bean="patch.db-V3.2-Modify-AVM-MimeType" />
</list> </list>
</property> </property>
</bean> </bean>

View File

@@ -0,0 +1,24 @@
--
-- Title: Upgrade to V3.2 - modify AVM mimetype
-- Database: Generic
-- Since: V3.2 schema 2017
-- Author: janv
--
-- modify AVM mimetype (increase column size)
--
-- Please contact support@alfresco.com if you need assistance with the upgrade.
--
alter table avm_nodes modify mime_type varchar(100);
--
-- Record script finish
--
DELETE FROM alf_applied_patch WHERE id = 'patch.db-V3.2-Modify-AVM-mimetype';
INSERT INTO alf_applied_patch
(id, description, fixes_from_schema, fixes_to_schema, applied_to_schema, target_schema, applied_on_date, applied_to_server, was_executed, succeeded, report)
VALUES
(
'patch.db-V3.2-Modify-AVM-mimetype', 'Manually executed script upgrade V3.2 to modify AVM mimetype',
0, 2016, -1, 2017, null, 'UNKOWN', 1, 1, 'Script completed'
);

View File

@@ -0,0 +1,24 @@
--
-- Title: Upgrade to V3.2 - modify AVM mimetype
-- Database: MySQL
-- Since: V3.2 schema 2017
-- Author: janv
--
-- modify AVM mimetype (increase column size)
--
-- Please contact support@alfresco.com if you need assistance with the upgrade.
--
alter table avm_nodes modify mime_type varchar(100);
--
-- Record script finish
--
DELETE FROM alf_applied_patch WHERE id = 'patch.db-V3.2-Modify-AVM-MimeType';
INSERT INTO alf_applied_patch
(id, description, fixes_from_schema, fixes_to_schema, applied_to_schema, target_schema, applied_on_date, applied_to_server, was_executed, succeeded, report)
VALUES
(
'patch.db-V3.2-Modify-AVM-MimeType', 'Manually executed script upgrade V3.2 to modify AVM mimetype',
0, 2016, -1, 2017, null, 'UNKOWN', 1, 1, 'Script completed'
);

View File

@@ -1922,4 +1922,15 @@
</property> </property>
</bean> </bean>
<bean id="patch.db-V3.2-Modify-AVM-MimeType" class="org.alfresco.repo.admin.patch.impl.SchemaUpgradeScriptPatch" parent="basePatch">
<property name="id"><value>patch.db-V3.2-Modify-AVM-MimeType</value></property>
<property name="description"><value>patch.schemaUpgradeScript.description</value></property>
<property name="fixesFromSchema"><value>0</value></property>
<property name="fixesToSchema"><value>2016</value></property>
<property name="targetSchema"><value>2017</value></property>
<property name="scriptUrl">
<value>classpath:alfresco/dbscripts/upgrade/3.2/${db.script.dialect}/modify-AVM-mimetype.sql</value>
</property>
</bean>
</beans> </beans>

View File

@@ -19,4 +19,4 @@ version.build=@build-number@
# Schema number # Schema number
version.schema=2016 version.schema=2017

View File

@@ -115,7 +115,7 @@
<subclass discriminator-value="plainfile" <subclass discriminator-value="plainfile"
name="PlainFileNodeImpl" proxy="PlainFileNode" lazy="false"> name="PlainFileNodeImpl" proxy="PlainFileNode" lazy="false">
<property name="contentURL" column="content_url" type="string" length="128"/> <property name="contentURL" column="content_url" type="string" length="128"/>
<property name="mimeType" column="mime_type" type="string" length="64"/> <property name="mimeType" column="mime_type" type="string" length="100"/>
<property name="encoding" column="encoding" type="string" length="16"/> <property name="encoding" column="encoding" type="string" length="16"/>
<property name="length" column="length" type="long"/> <property name="length" column="length" type="long"/>
</subclass> </subclass>