From 1d9a9ed10b445ae947152c46aba746d3203f76eb Mon Sep 17 00:00:00 2001 From: Victor Grousset/tuxayo Date: Fri, 5 Dec 2025 15:41:35 +0100 Subject: [PATCH] Bug 38061: (QA follow-up): dbrev: print if column already exists Signed-off-by: Baptiste Wojtkowski Signed-off-by: Victor Grousset/tuxayo --- .../atomicupdate/bug_38061-collections_preselect_column.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/installer/data/mysql/atomicupdate/bug_38061-collections_preselect_column.pl b/installer/data/mysql/atomicupdate/bug_38061-collections_preselect_column.pl index c741f7530b..abf9ca35ff 100755 --- a/installer/data/mysql/atomicupdate/bug_38061-collections_preselect_column.pl +++ b/installer/data/mysql/atomicupdate/bug_38061-collections_preselect_column.pl @@ -14,6 +14,8 @@ return { q{ ALTER TABLE subscription ADD COLUMN `preselect_issues_in_collections_table` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'yes / no if the subscription should preselect issues in the collections table' AFTER published_on_template} ); say_success( $out, "Added column 'subscription.preselect_issues_in_collections_table'" ); + } else { + say_info( $out, "Column 'subscription.preselect_issues_in_collections_table' already exists!" ); } }, }; -- 2.52.0