Bug 25851: (bug 18928 follow-up) Remove holdallowed rule is value is an empty string
[koha.git] / installer / data / mysql / atomicupdate / bug_25851.perl
1 $DBversion = 'XXX'; # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3     $dbh->do("
4         DELETE FROM circulation_rules WHERE rule_name='holdallowed' AND rule_value='';
5     ");
6     NewVersion( $DBversion, 25851, "Remove holdallowed rule if value is an empty string");
7 }