da306863db4b349e93bc9f9bc69439dd2e48d396
[koha-equinox.git] / installer / data / mysql / atomicupdate / Bug_24103_add_DumpSearchQueryTemplate_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,options,explanation,type)
5         VALUES ('DumpSearchQueryTemplate',0,'','Add the search query being passed to the search engine into the template for debugging','YesNo')
6     });
7     SetVersion( $DBversion );
8     print "Upgrade to $DBversion done (Bug XXXXX - add DumpSearchQueryTemplate syspref)\n";
9 }