From 435e80fb8d3e011491d439d617014ed15bf8ff44 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 23 Jan 2020 10:39:38 +0000 Subject: [PATCH] Bug 24478: DBRev 19.12.00.013 Signed-off-by: Martin Renvoize --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_24478.perl | 10 ---------- installer/data/mysql/updatedatabase.pl | 13 +++++++++++++ 3 files changed, 14 insertions(+), 11 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_24478.perl diff --git a/Koha.pm b/Koha.pm index bab34a3750..2cfa23cfbc 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 = "19.12.00.012"; +$VERSION = "19.12.00.013"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_24478.perl b/installer/data/mysql/atomicupdate/bug_24478.perl deleted file mode 100644 index ffe5f4fdba..0000000000 --- a/installer/data/mysql/atomicupdate/bug_24478.perl +++ /dev/null @@ -1,10 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - $dbh->do(qq{ - INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES - ('EnablePointOfSale','0',NULL,'Enable the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)','YesNo') - }); - - SetVersion( $DBversion ); - print "Upgrade to $DBversion done (Bug 24478 - Add `EnablePointOfSale` system preference to allow disabling the point of sale feature)\n"; -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index c01fa74b63..cd170dbcb7 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -20563,6 +20563,19 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug 24481 - Move permission to correct module_bit)\n"; } +$DBversion = '19.12.00.013'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(qq{ + INSERT IGNORE INTO + systempreferences (variable,value,options,explanation,type) + VALUES + ('EnablePointOfSale','0',NULL,'Enable the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)','YesNo') + }); + + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 24478 - Add `EnablePointOfSale` system preference to allow disabling the point of sale feature)\n"; +} + # 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