From 83095ebc4ea72f08dfbb573476fa81357f63c8f6 Mon Sep 17 00:00:00 2001 From: Caroline Cyr La Rose Date: Tue, 21 May 2024 09:37:38 -0400 Subject: [PATCH] Bug 36819: (follow-up) Updatedatabase to correct wrong value This patch adds an update to correct the value of scale_width to 0.800000 IF it is 0.080000. It should not change the value if it is anything else than 0.080000. Signed-off-by: Martin Renvoize Signed-off-by: Katrin Fischer --- installer/data/mysql/atomicupdate/bug_36819.pl | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 installer/data/mysql/atomicupdate/bug_36819.pl diff --git a/installer/data/mysql/atomicupdate/bug_36819.pl b/installer/data/mysql/atomicupdate/bug_36819.pl new file mode 100755 index 0000000000..f002bf6c7b --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug_36819.pl @@ -0,0 +1,16 @@ +use Modern::Perl; +use Koha::Installer::Output qw(say_warning say_failure say_success say_info); + +return { + bug_number => "36819", + description => "Change barcode width value if it still has the wrong default value", + up => sub { + my ($args) = @_; + my ( $dbh, $out ) = @$args{qw(dbh out)}; + + $dbh->do(q{UPDATE creator_layouts SET scale_width = '0.800000' WHERE scale_width = '0.080000';}); + + say $out "Changed the barcode width in patron card creator default layout to 80% if it was 8%"; + + }, +}; -- 2.39.5