From ccc40975e3cda7966b67be297dd16891aa8dc314 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Mon, 1 Oct 2018 16:29:20 +0000 Subject: [PATCH] Bug 17602: DBRev 18.06.00.034 Signed-off-by: Nick Clemens --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/recordedbooks.sql | 4 ---- installer/data/mysql/updatedatabase.pl | 12 ++++++++++++ 3 files changed, 13 insertions(+), 5 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/recordedbooks.sql diff --git a/Koha.pm b/Koha.pm index 26badbb34c..c9522bff85 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 = "18.06.00.033"; +$VERSION = "18.06.00.034"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/recordedbooks.sql b/installer/data/mysql/atomicupdate/recordedbooks.sql deleted file mode 100644 index 2caa4006e5..0000000000 --- a/installer/data/mysql/atomicupdate/recordedbooks.sql +++ /dev/null @@ -1,4 +0,0 @@ -INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) -VALUES ('RecordedBooksClientSecret','','30','Client key for RecordedBooks integration','YesNo'), - ('RecordedBooksLibraryID','','','Library ID for RecordedBooks integration','Integer'), - ('RecordedBooksDomain','','','RecordedBooks domain','Free'); diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index e5aa5eca6a..4c4e4d262e 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -16462,6 +16462,18 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug 12747 - Add AdditionalFieldsInZ3950ResultSearch system preference)\n"; } +$DBversion = '18.06.00.034'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q| + INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) + VALUES ('RecordedBooksClientSecret','','30','Client key for RecordedBooks integration','YesNo'), + ('RecordedBooksLibraryID','','','Library ID for RecordedBooks integration','Integer'), + ('RecordedBooksDomain','','','RecordedBooks domain','Free'); + |); + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 17602 - Integrate support for OneClickdigital/Recorded Books API)\n"; +} + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.20.1