Bug 24108: (QA follow-up) Adjust wording and use perl for update file
[koha.git] / installer / data / mysql / atomicupdate / bug_24108-add_SaveRecordbyControlNumber_syspref.sql
1 $DBversion = 'XXX';
2 if( CheckVersion( $DBversion ) ) {
3     $dbh->do(q{
4          INSERT IGNORE INTO systempreferences
5          (variable, value, explanation, options, type) VALUES
6          ('SaveRecordbyControlNumber', '0', 'If set, advanced cataloging editor will use the control number field to populate the name of the save file, otherwise it uses the biblionumber.', NULL, 'YesNo')
7     });
8     NewVersion( $DBversion, 24108, "Add system preference SaveRecordbyControlNumber");
9 }