Bug 26070: Remove GoogleIndicTransliteration system preference
[koha.git] / installer / data / mysql / atomicupdate / bug-26070-remove-google-transliteration.perl
1 $DBversion = 'XXX'; # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3     # Remove from the systempreferences table
4     $dbh->do("DELETE FROM systempreferences WHERE variable = 'GoogleIndicTransliteration'");
5
6     # Always end with this (adjust the bug info)
7     NewVersion( $DBversion, 26070, "Remove references to deprecated Google Transliterate API");
8 }