Bug 26070: DBRev 20.06.00.020
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 30 Jul 2020 15:21:50 +0000 (15:21 +0000)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 30 Jul 2020 15:44:27 +0000 (17:44 +0200)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Koha.pm
installer/data/mysql/atomicupdate/bug-26070-remove-google-transliteration.perl [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index 8efa47d..719bed6 100644 (file)
--- 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 (file)
index 13a57e7..0000000
+++ /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");
-}
index 9f2880d..76a4ffa 100755 (executable)
@@ -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/';