Bug 21915: Add a cli script to reconcile balances
[koha.git] / installer / data / mysql / atomicupdate / 21915.perl
1 $DBversion = 'XXX';
2 if( CheckVersion( $DBversion ) ) {
3     $dbh->do(q{
4         INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES
5         ('AccountAutoReconcile','0','If enabled, patron balances will get reconciled automatically on each transaction.',NULL,'YesNo');
6     });
7     SetVersion($DBversion);
8     print "Upgrade to $DBversion done (Bug 21915 - Add a way to automatically reconcile balance for patrons)\n";
9 }