mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
51903 to 54309 git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@54310 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
26 lines
894 B
SQL
26 lines
894 B
SQL
--
|
|
-- Title: DROP Indexes
|
|
-- Database: Generic
|
|
-- Since: V4.1 Schema 5119
|
|
-- Author: Valery Shikunets
|
|
--
|
|
-- Please contact support@alfresco.com if you need assistance with the upgrade.
|
|
--
|
|
-- ALF-16286: DROP fk_alf_qname_ns on alf_qname table
|
|
|
|
DROP INDEX fk_alf_qname_ns; --(optional)
|
|
DROP INDEX fk_alf_qn_ns; --(optional)
|
|
|
|
--
|
|
-- Record script finish
|
|
--
|
|
|
|
|
|
DELETE FROM alf_applied_patch WHERE id = 'patch.db-V4.1-drop-alfqname-fk-indexes';
|
|
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-V4.1-drop-alfqname-fk-indexes', 'Manually executed script upgrade V4.1: DROP fk_alf_qname_ns on alf_qname table',
|
|
0, 6023, -1, 6024, null, 'UNKNOWN', ${TRUE}, ${TRUE}, 'Script completed'
|
|
); |