From 4ab24451a337d964edead78cf332073ce1a5e0e3 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Wed, 25 Oct 2023 11:43:32 -0300 Subject: [PATCH] Bug 33887: DBRev 23.06.00.054 Signed-off-by: Tomas Cohen Arazi --- Koha.pm | 2 +- .../mysql/{atomicupdate/bug_33887.pl => db_revs/230600054.pl} | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) rename installer/data/mysql/{atomicupdate/bug_33887.pl => db_revs/230600054.pl} (88%) diff --git a/Koha.pm b/Koha.pm index f093752f65..78ab58d951 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 = "23.06.00.053"; +$VERSION = "23.06.00.054"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_33887.pl b/installer/data/mysql/db_revs/230600054.pl similarity index 88% rename from installer/data/mysql/atomicupdate/bug_33887.pl rename to installer/data/mysql/db_revs/230600054.pl index 1a3f5f56ee..d2089e1921 100755 --- a/installer/data/mysql/atomicupdate/bug_33887.pl +++ b/installer/data/mysql/db_revs/230600054.pl @@ -7,14 +7,11 @@ return { my ($args) = @_; my ( $dbh, $out ) = @$args{qw(dbh out)}; - # Do you stuffs here $dbh->do( q{ INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES ('AutomaticCheckinAutoFill', '0', NULL,'Automatically fill the next hold with an automatic checkin cronjob.', 'YesNo') } ); - # Print useful stuff here - # sysprefs say $out "Added new system preference 'AutomaticCheckinAutoFill'"; }, }; -- 2.39.5