Bug 20244: Pod fixes
[koha_ffzg] / installer / data / mysql / atomicupdate / bug_19893_elasticsearch_index_status_sysprefs.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`) VALUES
5         ('ElasticsearchIndexStatus_biblios', '0', 'Biblios index status', NULL, NULL),
6         ('ElasticsearchIndexStatus_authorities', '0', 'Authorities index status', NULL, NULL)
7     });
8
9     SetVersion($DBversion);
10     print "Upgrade to $DBversion done (Bug 19893 - Add elasticsearch index status preferences)\n";
11 }