Bug 23321: (QA follow-up) Accounts vs. Accounting
[koha.git] / installer / data / mysql / atomicupdate / bug_23321_preferences.perl
1 $DBversion = 'XXX';    # will be replaced by the RM
2 if ( CheckVersion($DBversion) ) {
3
4     $dbh->do(qq{
5         INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES
6         ('UseCashRegisters','0','','Use cash registers with the accounting system and assign patron transactions to them.','YesNo')
7     });
8
9     SetVersion($DBversion);
10     print "Upgrade to $DBversion done (Bug 23321 - Add cash register system preference)\n";
11 }