View | Details | Raw Unified | Return to bug 19893
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_19893_elasticsearch_index_status_sysprefs.perl (+11 lines)
Line 0 Link Here
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
}
(-)a/installer/data/mysql/atomicupdate/bug_19893_elasticsearch_index_status_sysprefs.sql (-3 lines)
Lines 1-2 Link Here
1
INSERT IGNORE INTO systempreferences (variable, value, explanation, options, type) VALUES ('ElasticsearchIndexStatus_biblios', '0', 'Biblios index status', NULL, NULL);
2
INSERT IGNORE INTO systempreferences (variable, value, explanation, options, type) VALUES ('ElasticsearchIndexStatus_authorities', '0', 'Authorities index status', NULL, NULL);
3
- 

Return to bug 19893