Koha/installer/data/mysql/db_revs/220600008.pl
Tomas Cohen Arazi cccfccca76
Bug 30327: DBRev 22.06.00.008
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-06-25 15:30:47 -03:00

16 lines
693 B
Perl
Executable file

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