From 456bcee3563097a930d9f0487352fe3b915a8a98 Mon Sep 17 00:00:00 2001 From: Jesse Maseto Date: Fri, 11 Jan 2019 19:07:16 +0000 Subject: [PATCH] Bug 22030: DBRev 18.05.07.002 Signed-off-by: Jesse Maseto --- Koha.pm | 2 +- ...22030_add_OverDriveUsername_system_preference.perl | 9 --------- installer/data/mysql/updatedatabase.pl | 11 +++++++++++ 3 files changed, 12 insertions(+), 10 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_22030_add_OverDriveUsername_system_preference.perl diff --git a/Koha.pm b/Koha.pm index dba1863269..2a9b5dba82 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.05.07.001"; +$VERSION = "18.05.07.002"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_22030_add_OverDriveUsername_system_preference.perl b/installer/data/mysql/atomicupdate/bug_22030_add_OverDriveUsername_system_preference.perl deleted file mode 100644 index 73047781ac..0000000000 --- a/installer/data/mysql/atomicupdate/bug_22030_add_OverDriveUsername_system_preference.perl +++ /dev/null @@ -1,9 +0,0 @@ -$DBversion = 'XXX'; -if( CheckVersion( $DBversion ) ) { - $dbh->do(q{ - INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES - ('OverDriveUsername','cardnumber','cardnumber|userid','Which patron information should be passed as OverDrive username','Choice') - }); - SetVersion( $DBversion ); - print "Upgrade to $DBversion done (Bug XXXXX - description)\n"; -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index c86653d4be..090d4d2e76 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -16286,6 +16286,17 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug 21065 - Set ON DELETE SET NULL on accountlines.borrowernumber)\n"; } +$DBversion = '18.05.07.002'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q{ + INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES + ('OverDriveUsername','cardnumber','cardnumber|userid','Which patron information should be passed as OverDrive username','Choice') + }); + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 22030 - Add Overdriveusername system preference)\n"; +} + + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.39.5