Bug 30373: (follow-up) UNIMARC relator codes auth values
[koha.git] / installer / data / mysql / db_revs / 211200030.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => "30135",
5     description => "Add EdifactLSQ mapping system preference",
6     up => sub {
7         my ($args) = @_;
8         my ($dbh, $out) = @$args{qw(dbh out)};
9         $dbh->do(q{
10             INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
11             ('EdifactLSQ', 'location', 'location|ccode', "Map EDI sequence code (GIR+LSQ) to Koha Item field", 'Choice')
12         });
13     },
14 };