From 79bfbf973d2cd347a7bcbde38f2f605c15da7d91 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Wed, 30 Oct 2024 06:23:27 +0000 Subject: [PATCH] Bug 14180: DBRev 24.06.00.051 Signed-off-by: Katrin Fischer --- Koha.pm | 2 +- .../mysql/{atomicupdate/bug_14180.pl => db_revs/240600051.pl} | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) rename installer/data/mysql/{atomicupdate/bug_14180.pl => db_revs/240600051.pl} (75%) diff --git a/Koha.pm b/Koha.pm index 2dfe09b028..ff8928665d 100644 --- a/Koha.pm +++ b/Koha.pm @@ -29,7 +29,7 @@ use vars qw{ $VERSION }; # - #4 : the developer version. The 4th number is the database subversion. # used by developers when the database changes. updatedatabase take care of the changes itself # and is automatically called by Auth.pm when needed. -$VERSION = "24.06.00.050"; +$VERSION = "24.06.00.051"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_14180.pl b/installer/data/mysql/db_revs/240600051.pl similarity index 75% rename from installer/data/mysql/atomicupdate/bug_14180.pl rename to installer/data/mysql/db_revs/240600051.pl index dffa605038..d7462cdd8e 100755 --- a/installer/data/mysql/atomicupdate/bug_14180.pl +++ b/installer/data/mysql/db_revs/240600051.pl @@ -1,4 +1,5 @@ use Modern::Perl; +use Koha::Installer::Output qw(say_warning say_failure say_success say_info); return { bug_number => "14180", @@ -14,5 +15,7 @@ return { VALUES ('AlwaysLoadCheckoutsTable','0','','Option to always load the checkout table','YesNo') } ); + say_success( $out, "Added new system preference 'AlwaysLoadCheckoutsTable'" ); + }, }; -- 2.39.5