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

@@ -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'
);