Bug 26247: (follow-up) Fix permissions
[koha.git] / installer / data / mysql / db_revs / 220600002.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => 30850,
5     description => 'Message about mappings changes for 110$a',
6     up => sub {
7         my ($args) = @_;
8         my ($dbh, $out) = @$args{qw(dbh out)};
9
10         say $out
11 q|110$a was added as a default mapping for biblio.author in MARC21. This will only change the mapping on new installations. If you wish to change the mappings on your existing installation, go to Administration > Koha to MARC mapping and add 110$a to biblio.author and then run batchRebuilBiblioTables.pl.|;
12     },
13 }