Bug 22653: Remove unimplemented RotationPreventTransfers system preference
[koha-equinox.git] / installer / data / mysql / atomicupdate / bug_22653_remove_RotationPreventTransfers.perl
1 $DBversion = 'XXX';
2 if( CheckVersion( $DBversion ) ) {
3     $dbh->do( "DELETE FROM systempreferences WHERE variable = 'RotationPreventTransfers'" );
4     SetVersion( $DBversion );
5     print "Upgrade to $DBversion done (Bug 22653 - Remove unimplemented RotationPreventTransfers system preference)\n";
6 }