From a641c83caba3ec75c7cccc299d3b560404f84c56 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Thu, 16 Aug 2018 14:03:28 +0000 Subject: [PATCH] Bug 21226: DBRev 17.11.09.001 Signed-off-by: Fridolin Somers --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_21226.sql | 3 --- installer/data/mysql/updatedatabase.pl | 9 +++++++++ 3 files changed, 10 insertions(+), 4 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_21226.sql diff --git a/Koha.pm b/Koha.pm index ae842b9631..0806062b68 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 = "17.11.09.000"; +$VERSION = "17.11.09.001"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_21226.sql b/installer/data/mysql/atomicupdate/bug_21226.sql deleted file mode 100644 index 19e0937b29..0000000000 --- a/installer/data/mysql/atomicupdate/bug_21226.sql +++ /dev/null @@ -1,3 +0,0 @@ -DELETE FROM systempreferences where variable="OCLCAffiliateID"; -DELETE FROM systempreferences where variable="XISBN"; -DELETE FROM systempreferences where variable="XISBNDailyLimit"; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 8634753f0c..4e55b7edae 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -15172,6 +15172,15 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (17.11.09 release)\n"; } +$DBversion = '17.11.09.001'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q{DELETE FROM systempreferences where variable="OCLCAffiliateID";}); + $dbh->do(q{DELETE FROM systempreferences where variable="XISBN";}); + $dbh->do(q{DELETE FROM systempreferences where variable="XISBNDailyLimit";}); + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 21226 - Remove prefs OCLCAffiliateID, XISBN and XISBNDailyLimit)\n"; +} + # DEVELOPER PROCESS, search for anything to execute in the db_update directory # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.39.5