From be3ab938d8caa7e78cc349cd7203eb3ec3a0b7a5 Mon Sep 17 00:00:00 2001 From: Aleisha Amohia Date: Fri, 7 Aug 2020 14:22:05 +1200 Subject: [PATCH] Bug 26070: DBRev 19.11.08.003 Signed-off-by: Aleisha Amohia --- Koha.pm | 2 +- .../bug-26070-remove-google-transliteration.perl | 9 --------- installer/data/mysql/updatedatabase.pl | 7 +++++++ 3 files changed, 8 insertions(+), 10 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug-26070-remove-google-transliteration.perl diff --git a/Koha.pm b/Koha.pm index 8f4af8539a..c2b8cfdb26 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 = "19.11.08.002"; +$VERSION = "19.11.08.003"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug-26070-remove-google-transliteration.perl b/installer/data/mysql/atomicupdate/bug-26070-remove-google-transliteration.perl deleted file mode 100644 index c1ef23e13e..0000000000 --- a/installer/data/mysql/atomicupdate/bug-26070-remove-google-transliteration.perl +++ /dev/null @@ -1,9 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - # Remove from the systempreferences table - $dbh->do("DELETE FROM systempreferences WHERE variable = 'GoogleIndicTransliteration'"); - - # Always end with this (adjust the bug info) - print "Upgrade to $DBversion done (Bug 26070 - Remove references to deprecated Google Transliterate API)\n"; - SetVersion( $DBversion ); -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 9a5123b791..b49ce393ba 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -20656,6 +20656,13 @@ if( CheckVersion( $DBversion ) ) { SetVersion( $DBversion ); } +$DBversion = "19.11.08.003"; +if( CheckVersion( $DBversion ) ) { + $dbh->do("DELETE FROM systempreferences WHERE variable = 'GoogleIndicTransliteration'"); + print "Upgrade to $DBversion done (Bug 26070 - Remove references to deprecated Google Transliterate API)\n"; + SetVersion( $DBversion ); +} + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/'; -- 2.39.5