Bug 20639: (QA follow-up) Rephrase system preference
[koha.git] / installer / data / mysql / atomicupdate / bug_20639-add_ILLOpacbackends_syspref.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,explanation,options,type)
5       VALUES ('ILLOpacbackends',NULL,NULL,'ILL backends to enabled for OPAC initiated requests','multiple');
6     |);
7
8     # Always end with this (adjust the bug info)
9     SetVersion( $DBversion );
10     print "Upgrade to $DBversion done (Bug 20639 - Add ILLOpacbackends syspref)\n";
11 }