From 871a2fc6ffe4f8f6fb21bb15ce6d27a241c60595 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 14 Apr 2021 13:28:28 +0000 Subject: [PATCH] Bug 21549: DBRev 20.12.00.030 Signed-off-by: Jonathan Druart --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_21549.perl | 9 --------- installer/data/mysql/updatedatabase.pl | 10 ++++++++++ 3 files changed, 11 insertions(+), 10 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_21549.perl diff --git a/Koha.pm b/Koha.pm index 19aa4a573c..924875d25d 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 = "20.12.00.029"; +$VERSION = "20.12.00.030"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_21549.perl b/installer/data/mysql/atomicupdate/bug_21549.perl deleted file mode 100644 index ee18dbb96c..0000000000 --- a/installer/data/mysql/atomicupdate/bug_21549.perl +++ /dev/null @@ -1,9 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - $dbh->do(q| - INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) - VALUES ('LockExpiredDelay','','','Delay for locking expired patrons (empty means no locking)','Integer') - |); - - NewVersion( $DBversion, 21549, "Add pref LockExpiredDelay"); -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 582056114a..4e9f3202ce 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -23797,6 +23797,16 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, 27726, "Increase field size for problem_reports.content"); } +$DBversion = '20.12.00.030'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q| + INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) + VALUES ('LockExpiredDelay','','','Delay for locking expired patrons (empty means no locking)','Integer') + |); + + NewVersion( $DBversion, 21549, "Add new system preference LockExpiredDelay"); +} + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/'; -- 2.39.5