From 8dfaaae2b9689cb3fd6825a278c3734206efbb1d 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 (cherry picked from commit a641c83caba3ec75c7cccc299d3b560404f84c56) 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 9fdee7fb71..344076608a 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.05.13.001"; +$VERSION = "17.05.13.002"; 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 d7e904c5fa..b546c0a59f 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -14706,6 +14706,15 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug 20773 - expirationdate filled for waiting holds)\n"; } +$DBversion = '17.05.13.002'; +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