From c779839cfed63cb7573db88d15e8015136eeb093 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 21 Dec 2023 15:57:41 +0000 Subject: [PATCH] Bug 32435: Add TICKET_RESOLUTION authorized value Signed-off-by: David Nind --- installer/data/mysql/atomicupdate/bug_32435.pl | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 installer/data/mysql/atomicupdate/bug_32435.pl diff --git a/installer/data/mysql/atomicupdate/bug_32435.pl b/installer/data/mysql/atomicupdate/bug_32435.pl new file mode 100644 index 0000000000..09d6536555 --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug_32435.pl @@ -0,0 +1,14 @@ +use Modern::Perl; + +return { + bug_number => "32435", + description => "Add ticket resolutions to catalog concerns", + up => sub { + my ($args) = @_; + my ($dbh, $out) = @$args{qw(dbh out)}; + $dbh->do(q{ + INSERT IGNORE INTO authorised_value_categories( category_name, is_system ) VALUES ('TICKET_RESOLUTION', 1); + }); + say $out "Added TICKET_RESOLUTION authorised value category"; + }, +}; -- 2.30.2