From bc421faa0d90da91a14d1d900103d732b732b5bf Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 18 May 2020 11:43:55 +0100 Subject: [PATCH] Bug 13881: DBRev 19.12.00.090 Signed-off-by: Martin Renvoize --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_13881.perl | 11 ----------- installer/data/mysql/updatedatabase.pl | 13 +++++++++++++ 3 files changed, 14 insertions(+), 12 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_13881.perl diff --git a/Koha.pm b/Koha.pm index ca166837c0..1462fc5838 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.089"; +$VERSION = "19.12.00.090"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_13881.perl b/installer/data/mysql/atomicupdate/bug_13881.perl deleted file mode 100644 index ac11e53469..0000000000 --- a/installer/data/mysql/atomicupdate/bug_13881.perl +++ /dev/null @@ -1,11 +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 - ('UseIssueDesks','0','','Use issue desks with circulation.','YesNo') - }); - - SetVersion($DBversion); - print "Upgrade to $DBversion done (Bug 13881 - Add cash register system preference)\n"; - } diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 0a0d765bd8..6869273b22 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -22142,6 +22142,19 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, 25389, "Catch errant cases of LOST_RETURNED"); } +$DBversion = '19.12.00.090'; +if ( CheckVersion($DBversion) ) { + + $dbh->do( + qq{ + INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES + ('UseIssueDesks','0','','Use issue desks with circulation.','YesNo') + } + ); + + NewVersion( $DBversion, 13881, "Add issue desks system preference"); +} + # 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.11.4.GIT