Bug 20517: (QA follow-up) Add ability to override syspref with account level settings...
[koha.git] / installer / data / mysql / atomicupdate / bug20517-sort-bin.perl
1 $DBversion = 'XXX'; # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3     $dbh->do(q{
4         INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
5         ('SIP2SortBinMapping','',NULL,'Use the following mappings to determine the sort_bin of a returned item. The mapping should be on the form \"branchcode:item field:item field value:sort bin number\", with one mapping per line.','free'),;
6     });
7     NewVersion( $DBversion, 20517, "Add SIP2SortBinMapping system preference");
8 }