Lines 1-8
Link Here
|
1 |
$DBversion = 'XXX'; # will be replaced by the RM |
1 |
$DBversion = 'XXX'; # will be replaced by the RM |
2 |
if( CheckVersion( $DBversion ) ) { |
2 |
if( CheckVersion( $DBversion ) ) { |
3 |
$dbh->do( "INSERT IGNORE INTO account_offset_types () VALUES ( 'CREATE' )" ); |
3 |
$dbh->do( "INSERT IGNORE INTO account_offset_types ( type ) VALUES ( 'CREATE' ), ( 'APPLY' )" ); |
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)" ); |
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 |
|
5 |
|
6 |
# Always end with this (adjust the bug info) |
|
|
7 |
NewVersion( $DBversion, 22435, "Update offsets to CREATE type"); |
6 |
NewVersion( $DBversion, 22435, "Update offsets to CREATE type"); |
8 |
} |
7 |
} |
9 |
- |
|
|