Bug 22132: (QA follow-up) set_password now expects a hashref
[koha.git] / installer / data / mysql / atomicupdate / bug_22132_basic_auth.perl
1 $DBversion = 'XXX';
2 if( CheckVersion( $DBversion ) ) {
3
4     $dbh->do(q{
5         INSERT IGNORE INTO systempreferences
6             (variable, value, options, explanation, type )
7         VALUES
8             ('RESTBasicAuth','0',NULL,'If enabled, Basic authentication is enabled for the REST API.','YesNo')
9     });
10
11     SetVersion( $DBversion );
12     print "Upgrade to $DBversion done (Bug 22132 - Add Basic authentication)\n";
13 }