Bug 17602: DBRev 18.06.00.034
authorNick Clemens <nick@bywatersolutions.com>
Mon, 1 Oct 2018 16:29:20 +0000 (16:29 +0000)
committerNick Clemens <nick@bywatersolutions.com>
Mon, 1 Oct 2018 16:29:27 +0000 (16:29 +0000)
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>

Koha.pm
installer/data/mysql/atomicupdate/recordedbooks.sql [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index 26badbb..c9522bf 100644 (file)
--- 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 (file)
index 2caa400..0000000
+++ /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');
index e5aa5ec..4c4e4d2 100755 (executable)
@@ -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.