From 79699c8f2b5dea65c5b67ba568d7f9dc06e895c5 Mon Sep 17 00:00:00 2001 From: "florian.azizian" <florian.azizian@maarch.org> Date: Thu, 27 Feb 2020 10:29:00 +0100 Subject: [PATCH] FIX #12091 TIME 0:15 fix 2003 sql migration --- migration/20.03/2003.sql | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/migration/20.03/2003.sql b/migration/20.03/2003.sql index ec5031df3b2..bbf1a61e98d 100644 --- a/migration/20.03/2003.sql +++ b/migration/20.03/2003.sql @@ -88,6 +88,9 @@ DELETE FROM actions_groupbaskets WHERE id_action in (SELECT id FROM actions WHER DELETE FROM groupbasket_redirect WHERE action_id in (SELECT id FROM actions WHERE component = 'viewDoc' OR action_page in ('view', 'validate_mail', 'process', 'visa_mail')); DELETE FROM actions WHERE component = 'viewDoc' OR action_page in ('view', 'validate_mail', 'process', 'visa_mail'); +ALTER TABLE actions DROP COLUMN IF EXISTS parameters; +ALTER TABLE actions ADD COLUMN parameters jsonb NOT NULL DEFAULT '{}'; + UPDATE actions SET component = 'rejectVisaBackToPreviousAction' WHERE action_page = 'rejection_visa_previous'; UPDATE actions SET component = 'redirectInitiatorEntityAction' WHERE action_page = 'redirect_visa_entity'; UPDATE actions SET component = 'rejectVisaBackToPreviousAction' WHERE action_page = 'rejection_visa_previous'; @@ -524,7 +527,6 @@ DO $$ BEGIN DELETE FROM actions_groupbaskets WHERE id_action in (SELECT id FROM actions WHERE enabled = 'N'); DELETE FROM groupbasket_redirect WHERE action_id in (SELECT id FROM actions WHERE enabled = 'N'); DELETE FROM actions WHERE enabled = 'N'; - ALTER TABLE actions ADD COLUMN parameters jsonb NOT NULL DEFAULT '{}'; END IF; END$$; -- GitLab