c3828920d5fee28aa4ff704c66d802e17f1fdf31
[koha-equinox.git] / installer / data / mysql / atomicupdate / bug_3137-add_CollapseFieldsPatronAddForm_syspref.perl
1 $DBversion = 'XXX';  # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3     $dbh->do(q{INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES ('CollapseFieldsPatronAddForm','',NULL,'Collapse these fields by default when adding a new patron. These fields can still be expanded.','Multiple') });
4
5     SetVersion( $DBversion );
6     print "Upgrade to $DBversion done (Bug 4461 - Add CollapseFieldsPatronAddForm system preference)\n";
7 }