From 47f4ae3fe7958c708bf3af887721b829ca8a8182 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 11 Nov 2020 14:38:12 +0000 Subject: [PATCH] Bug 20936: DBRev 20.06.00.067 Signed-off-by: Jonathan Druart --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug-20936.perl | 10 ---------- installer/data/mysql/updatedatabase.pl | 10 ++++++++++ 3 files changed, 11 insertions(+), 11 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug-20936.perl diff --git a/Koha.pm b/Koha.pm index 29f94b6eff..d133a21034 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.06.00.066"; +$VERSION = "20.06.00.067"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug-20936.perl b/installer/data/mysql/atomicupdate/bug-20936.perl deleted file mode 100644 index 6fec956b08..0000000000 --- a/installer/data/mysql/atomicupdate/bug-20936.perl +++ /dev/null @@ -1,10 +0,0 @@ -$DBversion = 'XXX'; -if( CheckVersion( $DBversion ) ) { - - $dbh->do(qq{ - INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES - ('OPACHoldsHistory','0','','If ON, enables display of Patron Holds History in OPAC','YesNo') - }); - - NewVersion( $DBversion, 20936, "Add OPACHoldsHistory preferences"); -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 5a9c189876..ce22b53c65 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -23340,6 +23340,16 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, 22818, "Add ILL notices" ); } +$DBversion = '20.06.00.067'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q{ + INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES + ('OPACHoldsHistory','0','','If ON, enables display of Patron Holds History in OPAC','YesNo') + }); + + NewVersion( $DBversion, 20936, "Add new system preference OPACHoldsHistory"); +} + # 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