Koha/installer/data/mysql/db_revs/230600073.pl
Tomas Cohen Arazi 84cb4624cf
Bug 33217: DBRev 23.06.00.073
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2023-11-08 17:52:43 -03:00

19 lines
772 B
Perl
Executable file

use Modern::Perl;
return {
bug_number => "33217",
description => "Add option to specify sorting for author links",
up => sub {
my ($args) = @_;
my ( $dbh, $out ) = @$args{qw(dbh out)};
$dbh->do(
q{
INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
('AuthorLinkSortBy','default','call_number|pubdate|acqdate|title','Specify the default field used for sorting when click author links','Choice'),
('AuthorLinkSortOrder','asc','asc|dsc|az|za','Specify the default sort order for author links','Choice')
}
);
say $out "Added new system preferences 'AuthorLinkSortBy' and 'AuthorLinkSortOrder'";
},
};