From 20282d0af36cd0424a896380392777b29315b55a Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Thu, 6 Aug 2020 20:45:36 +0000 Subject: [PATCH] Bug 26070: DBRev 20.05.02.010 Signed-off-by: Lucas Gass --- Koha.pm | 2 +- .../bug-26070-remove-google-transliteration.perl | 8 -------- installer/data/mysql/updatedatabase.pl | 9 +++++++++ 3 files changed, 10 insertions(+), 9 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug-26070-remove-google-transliteration.perl diff --git a/Koha.pm b/Koha.pm index 4fed7a6b30..41969e95f8 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 = "20.05.02.009"; +$VERSION = "20.05.02.010"; 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 13a57e7686..0000000000 --- a/installer/data/mysql/atomicupdate/bug-26070-remove-google-transliteration.perl +++ /dev/null @@ -1,8 +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) - NewVersion( $DBversion, 26070, "Remove references to deprecated Google Transliterate API"); -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index fbf1fe9cc1..81ae49e2ab 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -22369,6 +22369,15 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, 22660, "Adds NewsToolEditor system preference"); } +$DBversion = '20.05.02.010'; +if( CheckVersion( $DBversion ) ) { + # Remove from the systempreferences table + $dbh->do("DELETE FROM systempreferences WHERE variable = 'GoogleIndicTransliteration'"); + + # Always end with this (adjust the bug info) + NewVersion( $DBversion, 26070, "Remove references to deprecated Google Transliterate API"); +} + # 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