Bug 22435: Update CREATE offset types
[koha-ffzg.git] / installer / data / mysql / atomicupdate / bug_22435.perl
1 $DBversion = 'XXX'; # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3     $dbh->do( "INSERT IGNORE INTO account_offset_types () VALUES ( 'CREATE' )" );
4     $dbh->do( "UPDATE account_offsets SET type = 'CREATE' WHERE type != 'OVERDUE_INCREASE' AND type != 'OVERDUE_DECREASE' AND ( debit_id IS NULL OR credit_id IS NULL)" );
5
6     # Always end with this (adjust the bug info)
7     NewVersion( $DBversion, 22435, "Update offsets to CREATE type");
8 }