Koha/installer/data/mysql/db_revs/231200038.pl
Katrin Fischer e7aa232e57
Bug 32435: DBRev 23.12.00.038
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
2024-04-30 12:01:10 +02:00

16 lines
474 B
Perl
Executable file

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";
},
};