Koha/installer/data/mysql/db_revs/230600009.pl
Tomas Cohen Arazi 228938541b
Bug 30979: DBRev 23.06.00.009
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2023-07-14 12:14:49 -03:00

16 lines
522 B
Perl
Executable file

use Modern::Perl;
return {
bug_number => "30979",
description => "Add OPACTrustedCheckout system preference",
up => sub {
my ($args) = @_;
my ( $dbh, $out ) = @$args{qw(dbh out)};
$dbh->do(
q{
INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
('OpacTrustedCheckout', '0', NULL, 'Allow logged in OPAC users to check out to themselves', 'YesNo')
}
);
},
};