From 275cf0fbc1a6fabe3e74eec62e5f275e69c7d772 Mon Sep 17 00:00:00 2001 From: Guillaume Heurtier <guillaume.heurtier@maarch.org> Date: Tue, 13 Oct 2020 11:56:17 +0200 Subject: [PATCH] FEAT #13271 TIME 1:00 fix migration --- migration/20.10/2010.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/migration/20.10/2010.sql b/migration/20.10/2010.sql index 8fd75347c8d..f4a33d03b86 100755 --- a/migration/20.10/2010.sql +++ b/migration/20.10/2010.sql @@ -287,9 +287,9 @@ ALTER TABLE entities DROP COLUMN IF EXISTS producer_service; ALTER TABLE entities ADD COLUMN producer_service character varying(255); UPDATE entities SET producer_service = entity_id; -UPDATE component = 'sendToRecordManagementAction' where action_page = 'export_seda'; -UPDATE component = 'checkAcknowledgmentRecordManagementAction' where action_page = 'check_acknowledgement'; -UPDATE component = 'checkReplyRecordManagementAction' where action_page = 'check_reply'; +UPDATE actions SET component = 'sendToRecordManagementAction' where action_page = 'export_seda'; +UPDATE actions SET component = 'checkAcknowledgmentRecordManagementAction' where action_page = 'check_acknowledgement'; +UPDATE actions SET component = 'checkReplyRecordManagementAction' where action_page = 'check_reply'; /* RE CREATE VIEWS */ CREATE OR REPLACE VIEW res_view_letterbox AS -- GitLab