Bug 17602: DBRev 18.06.00.034

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
Nick Clemens 2018-10-01 16:29:20 +00:00
parent c80074077d
commit ccc40975e3
3 changed files with 13 additions and 5 deletions

View file

@ -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;

View file

@ -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');

View file

@ -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.