Bug 23697: (QA follow-up) Rename PatronAutocompletion to PatronAutoComplete
[koha.git] / installer / data / mysql / atomicupdate / bug_23697.perl
1 $DBversion = 'XXX'; # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3     $dbh->do( "UPDATE systempreferences SET variable="PatronAutoComplete" WHERE variable="CircAutocompl" LIMIT 1" );
4     SetVersion( $DBversion );
5     print "Upgrade to $DBversion done (Bug 23697 - Rename CircAutocompl system preference to PatronAutoComplete)\n";
6 }