From bb3c38f4c401be51fada5ed7f03c2c6d27aa5d07 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 23 Apr 2021 09:40:10 +0000 Subject: [PATCH] Bug 23971: DBRev 20.12.00.037 Signed-off-by: Jonathan Druart --- Koha.pm | 2 +- .../data/mysql/atomicupdate/bug_23971_AcqLog_pref.perl | 6 ------ installer/data/mysql/updatedatabase.pl | 10 ++++++++++ 3 files changed, 11 insertions(+), 7 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_23971_AcqLog_pref.perl diff --git a/Koha.pm b/Koha.pm index cff5fd5fcf..db89d56c75 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.036"; +$VERSION = "20.12.00.037"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_23971_AcqLog_pref.perl b/installer/data/mysql/atomicupdate/bug_23971_AcqLog_pref.perl deleted file mode 100644 index e612c0c298..0000000000 --- a/installer/data/mysql/atomicupdate/bug_23971_AcqLog_pref.perl +++ /dev/null @@ -1,6 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - $dbh->do( q| INSERT IGNORE INTO systempreferences (variable, value, explanation, options, type) VALUES ('AcquisitionLog', '0', 'If enabled, log acquisition activity', '', 'YesNo'); | ); - - NewVersion( $DBversion, 23971, "Add AcquisitionLog syspref"); -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index a6671df0aa..d5dbdb56ae 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -23890,6 +23890,16 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, 16787, "Add noReservesAllowed to club holds error codes"); } +$DBversion = '20.12.00.037'; +if( CheckVersion( $DBversion ) ) { + $dbh->do( q{ + INSERT IGNORE INTO systempreferences (variable, value, explanation, options, type) + VALUES ('AcquisitionLog', '0', 'If enabled, log acquisition activity', '', 'YesNo'); + }); + + NewVersion( $DBversion, 23971, "Add new system preference AcquisitionLog"); +} + # 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