From 773b88e9c20c17ea70aa285d12c8e4e03923d15d Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 30 Jul 2020 15:21:50 +0000 Subject: [PATCH] Bug 26070: DBRev 20.06.00.020 Signed-off-by: Jonathan Druart --- Koha.pm | 2 +- .../bug-26070-remove-google-transliteration.perl | 8 -------- installer/data/mysql/updatedatabase.pl | 8 ++++++++ 3 files changed, 9 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 8efa47d274..719bed6c50 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.06.00.019"; +$VERSION = "20.06.00.020"; 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 9f2880dcec..76a4ffa3e1 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -22535,6 +22535,14 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, 22660, "Adds NewsToolEditor system preference"); } +$DBversion = '20.06.00.020'; +if( CheckVersion( $DBversion ) ) { + # Remove from the systempreferences table + $dbh->do("DELETE FROM systempreferences WHERE variable = 'GoogleIndicTransliteration'"); + + 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.2