mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Merged HEAD-BUG-FIX (5.0/Cloud) to HEAD (5.0/Cloud)
78403: Merged EOL (5.0/Cloud) to HEAD-BUG-FIX (5.0/Cloud) 75700: ACE-2149: EOL AVM / WCM - Remove most of the AVM and WCM beans, scripts, classes, patches, etc - The Explorer client is very broken for compilation - TODO: Remove all WCM-related functionality, which I thought would be best left to a UI dev I've murdered many of the classes and beans but there's more to do - The repository compiles TODO: Get it running again - TODO: Check if we can wipe the 'deployment' project as well git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@82540 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -1,26 +0,0 @@
|
||||
--
|
||||
-- Title: Upgrade to V3.2 - Remove AVM Issuer
|
||||
-- Database: Generic
|
||||
-- Since: V3.2 schema 2008
|
||||
-- Author: janv
|
||||
--
|
||||
-- remove AVM node issuer
|
||||
--
|
||||
-- Please contact support@alfresco.com if you need assistance with the upgrade.
|
||||
--
|
||||
|
||||
-- drop issuer table
|
||||
|
||||
drop table avm_issuer_ids;
|
||||
|
||||
--
|
||||
-- Record script finish
|
||||
--
|
||||
DELETE FROM alf_applied_patch WHERE id = 'patch.db-V3.2-Remove-AVM-Issuer';
|
||||
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-Remove-AVM-Issuer', 'Manually executed script upgrade V3.2 to remove AVM Issuer',
|
||||
0, 2007, -1, 2008, null, 'UNKNOWN', ${TRUE}, ${TRUE}, 'Script completed'
|
||||
);
|
@@ -1,24 +0,0 @@
|
||||
--
|
||||
-- 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', ${TRUE}, ${TRUE}, 'Script completed'
|
||||
);
|
@@ -1,57 +0,0 @@
|
||||
--
|
||||
-- Title: Upgrade to V3.2 - Remove AVM Issuer
|
||||
-- Database: MySQL
|
||||
-- Since: V3.2 schema 2008
|
||||
-- Author: janv
|
||||
--
|
||||
-- remove AVM node issuer - replace with auto-increment id
|
||||
--
|
||||
-- Please contact support@alfresco.com if you need assistance with the upgrade.
|
||||
--
|
||||
|
||||
-- -----------------------------
|
||||
-- Enable auto-increment --
|
||||
-- -----------------------------
|
||||
|
||||
insert into avm_nodes (id, class_type, vers, version_id, guid, creator, owner, lastModifier, createDate, modDate, accessDate, is_root, store_new_id, acl_id, deletedType, layer_id, indirection, indirection_version, primary_indirection, opacity, content_url, mime_type, encoding, length)
|
||||
select
|
||||
(select max(id)+1 from avm_nodes),
|
||||
class_type, vers, version_id, guid, creator, owner, lastModifier, createDate, modDate, accessDate, is_root, store_new_id, acl_id, deletedType, layer_id, indirection, indirection_version, primary_indirection, opacity, content_url, mime_type, encoding, length
|
||||
from avm_nodes where id = 0;
|
||||
|
||||
update avm_aspects set node_id = (select max(id) from avm_nodes) where node_id = 0;
|
||||
|
||||
update avm_child_entries set parent_id = (select max(id) from avm_nodes) where parent_id = 0;
|
||||
update avm_child_entries set child_id = (select max(id) from avm_nodes) where child_id = 0;
|
||||
|
||||
update avm_history_links set ancestor = (select max(id) from avm_nodes) where ancestor = 0;
|
||||
update avm_history_links set descendent = (select max(id) from avm_nodes) where descendent = 0;
|
||||
|
||||
update avm_merge_links set mfrom = (select max(id) from avm_nodes) where mfrom = 0;
|
||||
update avm_merge_links set mto = (select max(id) from avm_nodes) where mto = 0;
|
||||
|
||||
update avm_node_properties set node_id = (select max(id) from avm_nodes) where node_id = 0;
|
||||
|
||||
update avm_stores set current_root_id = (select max(id) from avm_nodes) where current_root_id = 0;
|
||||
|
||||
update avm_version_roots set root_id = (select max(id) from avm_nodes) where root_id = 0;
|
||||
|
||||
delete from avm_nodes where id = 0;
|
||||
|
||||
alter table avm_nodes modify column id bigint not null auto_increment;
|
||||
|
||||
-- drop issuer table
|
||||
|
||||
drop table avm_issuer_ids;
|
||||
|
||||
--
|
||||
-- Record script finish
|
||||
--
|
||||
DELETE FROM alf_applied_patch WHERE id = 'patch.db-V3.2-Remove-AVM-Issuer';
|
||||
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-Remove-AVM-Issuer', 'Manually executed script upgrade V3.2 to remove AVM Issuer',
|
||||
0, 2007, -1, 2008, null, 'UNKNOWN', ${TRUE}, ${TRUE}, 'Script completed'
|
||||
);
|
@@ -1,24 +0,0 @@
|
||||
--
|
||||
-- Title: Upgrade to V3.2 - modify AVM mimetype
|
||||
-- Database: PostgreSQL
|
||||
-- Since: V3.2 schema 2017
|
||||
-- Author:
|
||||
--
|
||||
-- modify AVM mimetype (increase column size)
|
||||
--
|
||||
-- Please contact support@alfresco.com if you need assistance with the upgrade.
|
||||
--
|
||||
|
||||
ALTER TABLE avm_nodes ALTER COLUMN mime_type 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', TRUE, TRUE, 'Script completed'
|
||||
);
|
@@ -1,50 +0,0 @@
|
||||
--
|
||||
-- Title: Upgrade to V3.2 - Remove AVM Issuer
|
||||
-- Database: PostgreSQL
|
||||
-- Since: V3.2 schema 2008
|
||||
-- Author: janv
|
||||
--
|
||||
-- remove AVM node issuer - replace with sequence
|
||||
--
|
||||
-- Please contact support@alfresco.com if you need assistance with the upgrade.
|
||||
--
|
||||
|
||||
-- update sequence, if needed
|
||||
|
||||
SELECT SETVAL('hibernate_sequence', GREATEST((MAX(id)+1), NEXTVAL('hibernate_sequence'))) FROM avm_nodes;
|
||||
|
||||
insert into avm_nodes (id, class_type, vers, version_id, guid, creator, owner, lastModifier, createDate, modDate, accessDate, is_root, store_new_id, acl_id, deletedType, layer_id, indirection, indirection_version, primary_indirection, opacity, content_url, mime_type, encoding, length)
|
||||
select
|
||||
(select max(id)+1 from avm_nodes),
|
||||
class_type, vers, version_id, guid, creator, owner, lastModifier, createDate, modDate, accessDate, is_root, store_new_id, acl_id, deletedType, layer_id, indirection, indirection_version, primary_indirection, opacity, content_url, mime_type, encoding, length
|
||||
from avm_nodes where id = 0;
|
||||
|
||||
update avm_aspects set node_id = (select max(id) from avm_nodes) where node_id = 0;
|
||||
update avm_child_entries set parent_id = (select max(id) from avm_nodes) where parent_id = 0;
|
||||
update avm_child_entries set child_id = (select max(id) from avm_nodes) where child_id = 0;
|
||||
update avm_history_links set ancestor = (select max(id) from avm_nodes) where ancestor = 0;
|
||||
update avm_history_links set descendent = (select max(id) from avm_nodes) where descendent = 0;
|
||||
update avm_merge_links set mfrom = (select max(id) from avm_nodes) where mfrom = 0;
|
||||
update avm_merge_links set mto = (select max(id) from avm_nodes) where mto = 0;
|
||||
update avm_node_properties set node_id = (select max(id) from avm_nodes) where node_id = 0;
|
||||
update avm_stores set current_root_id = (select max(id) from avm_nodes) where current_root_id = 0;
|
||||
update avm_version_roots set root_id = (select max(id) from avm_nodes) where root_id = 0;
|
||||
|
||||
delete from avm_nodes where id = 0;
|
||||
|
||||
-- drop issuer table
|
||||
|
||||
DROP TABLE avm_issuer_ids;
|
||||
|
||||
--
|
||||
-- Record script finish
|
||||
--
|
||||
DELETE FROM alf_applied_patch WHERE id = 'patch.db-V3.2-Remove-AVM-Issuer';
|
||||
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-Remove-AVM-Issuer', 'Manually executed script upgrade V3.2 to remove AVM Issuer',
|
||||
0, 2007, -1, 2008, null, 'UNKOWN', TRUE, TRUE, 'Script completed'
|
||||
);
|
||||
|
@@ -1,23 +0,0 @@
|
||||
--
|
||||
-- Title: Upgrade to V3.4 - Create AVM sequences
|
||||
-- Database: Generic
|
||||
-- Since: V3.4 schema 4105
|
||||
-- Author: unknown
|
||||
--
|
||||
-- creates sequences for AVM tables
|
||||
--
|
||||
-- Please contact support@alfresco.com if you need assistance with the upgrade.
|
||||
--
|
||||
|
||||
|
||||
--
|
||||
-- Record script finish
|
||||
--
|
||||
DELETE FROM alf_applied_patch WHERE id = 'patch.db-V3.3-Fix-AVM-Seqs';
|
||||
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.3-Fix-AVM-Seqs', 'Manually executed script upgrade V3.3 to create AVM sequences',
|
||||
0, 4104, -1, 4105, null, 'UNKOWN', ${TRUE}, ${TRUE}, 'Script completed'
|
||||
);
|
@@ -1,33 +0,0 @@
|
||||
--
|
||||
-- Title: Upgrade to V3.4 - Create AVM sequences
|
||||
-- Database: PostgreSQL
|
||||
-- Since: V3.4 schema 4105
|
||||
-- Author: unknown
|
||||
--
|
||||
-- creates sequences for AVM tables
|
||||
--
|
||||
-- Please contact support@alfresco.com if you need assistance with the upgrade.
|
||||
--
|
||||
|
||||
--ASSIGN:hibernate_seq_next_value=value
|
||||
SELECT NEXTVAL('hibernate_sequence') AS value;
|
||||
|
||||
CREATE SEQUENCE avm_stores_seq START WITH ${hibernate_seq_next_value} INCREMENT BY 1; -- (optional)
|
||||
|
||||
CREATE SEQUENCE avm_store_properties_seq START WITH ${hibernate_seq_next_value} INCREMENT BY 1; -- (optional)
|
||||
|
||||
CREATE SEQUENCE avm_nodes_seq START WITH ${hibernate_seq_next_value} INCREMENT BY 1; -- (optional)
|
||||
|
||||
CREATE SEQUENCE avm_version_roots_seq START WITH ${hibernate_seq_next_value} INCREMENT BY 1; -- (optional)
|
||||
|
||||
--
|
||||
-- Record script finish
|
||||
--
|
||||
DELETE FROM alf_applied_patch WHERE id = 'patch.db-V3.3-Fix-AVM-Seqs';
|
||||
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.3-Fix-AVM-Seqs', 'Manually executed script upgrade V3.3 to create AVM sequences',
|
||||
0, 4104, -1, 4105, null, 'UNKOWN', ${TRUE}, ${TRUE}, 'Script completed'
|
||||
);
|
@@ -1,61 +0,0 @@
|
||||
--
|
||||
-- Title: Upgrade to V3.4 - AVM rename duplicates (if any)
|
||||
-- Database: Generic
|
||||
-- Since: V3.4 schema 4201
|
||||
-- Author: janv
|
||||
--
|
||||
-- Please contact support@alfresco.com if you need assistance with the upgrade.
|
||||
--
|
||||
|
||||
CREATE table avm_tmp_child_entries AS
|
||||
SELECT
|
||||
ce.parent_id, ce.name, ce.child_id
|
||||
FROM
|
||||
avm_child_entries ce,
|
||||
(
|
||||
SELECT
|
||||
ce2.parent_id, LOWER(ce2.name) as lname, MAX(ce2.child_id) as max_child_id
|
||||
FROM
|
||||
avm_child_entries ce2
|
||||
GROUP BY
|
||||
ce2.parent_id, LOWER(ce2.name)
|
||||
HAVING
|
||||
COUNT(*) > 1
|
||||
) entities
|
||||
WHERE
|
||||
ce.parent_id = entities.parent_id AND
|
||||
LOWER(ce.name) = entities.lname AND
|
||||
ce.child_id != entities.max_child_id;
|
||||
|
||||
UPDATE avm_child_entries ce
|
||||
SET name = ce.name || '-renamed.duplicate.mark-' || ce.child_id || '.temp'
|
||||
WHERE EXISTS
|
||||
(SELECT
|
||||
1
|
||||
FROM
|
||||
avm_tmp_child_entries tmp
|
||||
WHERE
|
||||
ce.parent_id = tmp.parent_id AND
|
||||
ce.name = tmp.name AND
|
||||
ce.child_id = tmp.child_id);
|
||||
|
||||
--ASSIGN:update_count=value
|
||||
SELECT
|
||||
COUNT(*) as value
|
||||
FROM
|
||||
avm_tmp_child_entries;
|
||||
|
||||
|
||||
DROP TABLE avm_tmp_child_entries;
|
||||
|
||||
--
|
||||
-- Record script finish
|
||||
--
|
||||
DELETE FROM alf_applied_patch WHERE id = 'patch.db-V3.4-AVM-rename-dupes';
|
||||
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.4-AVM-rename-dupes', 'Manually executed script upgrade V3.4',
|
||||
0, 4200, -1, 4201, null, 'UNKNOWN', ${TRUE}, ${TRUE}, 'Script completed: rows updated = ${update_count}'
|
||||
);
|
@@ -1,51 +0,0 @@
|
||||
--
|
||||
-- Title: Removing Link Validation related metadata
|
||||
-- Database: Generic
|
||||
-- Since: V3.4
|
||||
-- Author: Dmitry Velichkevich
|
||||
--
|
||||
-- Please contact support@alfresco.com if you need assistance with the upgrade.
|
||||
--
|
||||
-- ALF-5185: WCM: upgrade / re-index can fail on 3.4 if link validation (now removed) was previously being used
|
||||
|
||||
--
|
||||
-- Removing Link Validation Reports
|
||||
--
|
||||
DELETE
|
||||
FROM
|
||||
avm_store_properties
|
||||
WHERE
|
||||
qname_id in (
|
||||
SELECT
|
||||
id
|
||||
FROM
|
||||
alf_qname
|
||||
WHERE
|
||||
local_name = '.link.validation.report'
|
||||
);
|
||||
|
||||
--
|
||||
-- Removing Link Validation QName
|
||||
--
|
||||
DELETE
|
||||
FROM
|
||||
alf_qname
|
||||
WHERE
|
||||
local_name = '.link.validation.report';
|
||||
|
||||
--
|
||||
-- Record script finish
|
||||
--
|
||||
DELETE
|
||||
FROM
|
||||
alf_applied_patch
|
||||
WHERE
|
||||
id = 'patch.db-V3.4-RemovingLinkValidationMetadata';
|
||||
|
||||
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.4-RemovingLinkValidationMetadata', 'Link Validation reports metadata removed V3.4',
|
||||
0, 4113, -1, 4114, null, 'UNKOWN', ${TRUE}, ${TRUE}, 'Script completed'
|
||||
);
|
@@ -1,50 +0,0 @@
|
||||
--
|
||||
-- Title: Upgrade to V3.4 - AVM rename duplicates (if any)
|
||||
-- Database: MySQL
|
||||
-- Since: V3.4 schema 4209
|
||||
-- Author: dward
|
||||
--
|
||||
-- Please contact support@alfresco.com if you need assistance with the upgrade.
|
||||
--
|
||||
create table t_avm_child_entries (
|
||||
parent_id bigint not null,
|
||||
lc_name varchar(160) not null,
|
||||
name varchar(160) not null,
|
||||
child_id bigint not null,
|
||||
primary key (parent_id, lc_name)
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
--FOREACH avm_child_entries.child_id system.upgrade.t_avm_child_entries.batchsize
|
||||
INSERT INTO t_avm_child_entries (parent_id, lc_name, name, child_id)
|
||||
SELECT parent_id, LOWER(name), name, child_id
|
||||
FROM avm_child_entries
|
||||
WHERE child_id >= ${LOWERBOUND} AND child_id <= ${UPPERBOUND};
|
||||
|
||||
DROP TABLE avm_child_entries;
|
||||
ALTER TABLE t_avm_child_entries RENAME TO avm_child_entries;
|
||||
|
||||
alter table avm_child_entries
|
||||
add index fk_avm_ce_child (child_id),
|
||||
add constraint fk_avm_ce_child
|
||||
foreign key (child_id)
|
||||
references avm_nodes (id);
|
||||
|
||||
alter table avm_child_entries
|
||||
add index fk_avm_ce_parent (parent_id),
|
||||
add constraint fk_avm_ce_parent
|
||||
foreign key (parent_id)
|
||||
references avm_nodes (id);
|
||||
|
||||
CREATE INDEX idx_avm_ce_lc_name ON avm_child_entries (lc_name, parent_id);
|
||||
|
||||
--
|
||||
-- Record script finish
|
||||
--
|
||||
DELETE FROM alf_applied_patch WHERE id = 'patch.db-V3.4-AVM-index-child-entries-lower';
|
||||
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.4-AVM-index-child-entries-lower', 'Manually executed script upgrade V3.4',
|
||||
0, 6002, -1, 6003, null, 'UNKNOWN', ${TRUE}, ${TRUE}, 'Script completed'
|
||||
);
|
@@ -1,51 +0,0 @@
|
||||
--
|
||||
-- Title: Upgrade to V3.4 - AVM rename duplicates (if any)
|
||||
-- Database: PostgreSQL
|
||||
-- Since: V3.4 schema 4209
|
||||
-- Author: dward
|
||||
--
|
||||
-- Please contact support@alfresco.com if you need assistance with the upgrade.
|
||||
--
|
||||
|
||||
create table t_avm_child_entries (
|
||||
parent_id INT8 not null,
|
||||
lc_name varchar(160) not null,
|
||||
name varchar(160) not null,
|
||||
child_id INT8 not null,
|
||||
primary key (parent_id, lc_name)
|
||||
);
|
||||
|
||||
--FOREACH avm_child_entries.child_id system.upgrade.t_avm_child_entries.batchsize
|
||||
INSERT INTO t_avm_child_entries (parent_id, lc_name, name, child_id)
|
||||
SELECT parent_id, LOWER(name), name, child_id
|
||||
FROM avm_child_entries
|
||||
WHERE child_id >= ${LOWERBOUND} AND child_id <= ${UPPERBOUND};
|
||||
|
||||
DROP TABLE avm_child_entries;
|
||||
ALTER TABLE t_avm_child_entries RENAME TO avm_child_entries;
|
||||
|
||||
alter table avm_child_entries
|
||||
add constraint fk_avm_ce_child
|
||||
foreign key (child_id)
|
||||
references avm_nodes (id);
|
||||
create index fk_avm_ce_child on avm_child_entries(child_id);
|
||||
|
||||
alter table avm_child_entries
|
||||
add constraint fk_avm_ce_parent
|
||||
foreign key (parent_id)
|
||||
references avm_nodes (id);
|
||||
create index fk_avm_ce_parent on avm_child_entries(parent_id);
|
||||
|
||||
CREATE INDEX idx_avm_ce_lc_name ON avm_child_entries (lc_name, parent_id);
|
||||
|
||||
--
|
||||
-- Record script finish
|
||||
--
|
||||
DELETE FROM alf_applied_patch WHERE id = 'patch.db-V3.4-AVM-index-child-entries-lower';
|
||||
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.4-AVM-index-child-entries-lower', 'Manually executed script upgrade V3.4',
|
||||
0, 6002, -1, 6003, null, 'UNKNOWN', ${TRUE}, ${TRUE}, 'Script completed'
|
||||
);
|
@@ -1,24 +0,0 @@
|
||||
--
|
||||
-- Title: DROP Indexes
|
||||
-- Database: Generic
|
||||
-- Since: V4.1 Schema 6030
|
||||
-- Author: Alex Mukha
|
||||
--
|
||||
-- Please contact support@alfresco.com if you need assistance with the upgrade.
|
||||
--
|
||||
-- MNT-9275: When upgrading on Oracle RAC from version 3.2.2 to version 3.3 or higher, values returned by sequences are not ordered.
|
||||
|
||||
-- Used only for Oracle
|
||||
|
||||
--
|
||||
-- Record script finish
|
||||
--
|
||||
|
||||
DELETE FROM alf_applied_patch WHERE id = 'patch.db-V4.1-fix-AVM-seqs-order';
|
||||
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-fix-AVM-seqs-order', 'Manually executed script to set ORDER bit for sequences',
|
||||
0, 6030, -1, 6031, null, 'UNKNOWN', ${TRUE}, ${TRUE}, 'Script completed'
|
||||
);
|
@@ -1,26 +0,0 @@
|
||||
--
|
||||
-- Title: DROP unused IDX_AVM_VR_REVUQ index
|
||||
-- Database: InnoDB
|
||||
-- Since: V4.2 Schema 6031
|
||||
-- Author: Alex Mukha
|
||||
--
|
||||
-- Please contact support@alfresco.com if you need assistance with the upgrade.
|
||||
--
|
||||
-- ALF-19487 : ORACLE: AVM: Schema difference is present after upgrade from 3.4.13/4.0.2/4.1.5
|
||||
|
||||
DROP INDEX idx_avm_vr_revuq ON avm_version_roots;
|
||||
DROP INDEX version_id ON avm_version_roots;
|
||||
ALTER TABLE avm_version_roots ADD CONSTRAINT UNIQUE INDEX idx_avm_vr_uq (avm_store_id, version_id);
|
||||
|
||||
--
|
||||
-- Record script finish
|
||||
--
|
||||
|
||||
DELETE FROM alf_applied_patch WHERE id = 'patch.db-V4.2-drop-AVM-index';
|
||||
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.2-drop-AVM-index', 'Manually executed script to drop unnecessary index',
|
||||
0, 6031, -1, 6032, null, 'UNKNOWN', ${TRUE}, ${TRUE}, 'Script completed'
|
||||
);
|
@@ -1,27 +0,0 @@
|
||||
--
|
||||
-- Title: DROP unused IDX_AVM_VR_REVUQ index
|
||||
-- Database: PostgreSQL
|
||||
-- Since: V4.2 Schema 6031
|
||||
-- Author: Alex Mukha
|
||||
--
|
||||
-- Please contact support@alfresco.com if you need assistance with the upgrade.
|
||||
--
|
||||
-- ALF-19487 : ORACLE: AVM: Schema difference is present after upgrade from 3.4.13/4.0.2/4.1.5
|
||||
|
||||
DROP INDEX idx_avm_vr_revuq;
|
||||
ALTER TABLE avm_version_roots DROP CONSTRAINT avm_version_roots_version_id_avm_store_id_key; --(optional)
|
||||
ALTER TABLE avm_version_roots DROP CONSTRAINT avm_version_roots_version_id_key; --(optional)
|
||||
ALTER TABLE avm_version_roots ADD CONSTRAINT idx_avm_vr_uq UNIQUE (avm_store_id, version_id);
|
||||
|
||||
--
|
||||
-- Record script finish
|
||||
--
|
||||
|
||||
DELETE FROM alf_applied_patch WHERE id = 'patch.db-V4.2-drop-AVM-index';
|
||||
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.2-drop-AVM-index', 'Manually executed script to drop unnecessary index',
|
||||
0, 6031, -1, 6032, null, 'UNKNOWN', ${TRUE}, ${TRUE}, 'Script completed'
|
||||
);
|
Reference in New Issue
Block a user