From b5f0fce5f53f731df4d4271785eab8e8a3293364 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Fri, 4 Sep 2020 19:59:42 +0000 Subject: [PATCH] Bug 25958: DB Rev 20.05.03.001 Signed-off-by: Lucas Gass --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_25958.sql | 9 --------- installer/data/mysql/updatedatabase.pl | 10 ++++++++++ 3 files changed, 11 insertions(+), 10 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_25958.sql diff --git a/Koha.pm b/Koha.pm index e11d0ea3d1..a5eb5cb6a9 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.05.03.000"; +$VERSION = "20.05.03.001"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_25958.sql b/installer/data/mysql/atomicupdate/bug_25958.sql deleted file mode 100644 index 1c6d1b5385..0000000000 --- a/installer/data/mysql/atomicupdate/bug_25958.sql +++ /dev/null @@ -1,9 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - $dbh->do(q{ - INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES - ('DefaultLongOverdueSkipLostStatuses', '', NULL, 'Skip these lost statuses by default in longoverdue.pl', 'Free'), - }); - - NewVersion( $DBversion, 25958, "Allow LongOverdue cron to exclude specified lost values"); -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 7e9b2a9507..f871c3b13f 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -22383,6 +22383,16 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, undef, '20.05.03 release' ); } +$DBversion = '20.05.03.001'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q{ + INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES + ('DefaultLongOverdueSkipLostStatuses', '', NULL, 'Skip these lost statuses by default in longoverdue.pl', 'Free'), + }); + + NewVersion( $DBversion, 25958, "Allow LongOverdue cron to exclude specified lost values"); +} + # 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