Bug 29894: DBRev 21.12.00.044
[koha.git] / installer / data / mysql / db_revs / 211200000.pl
1 use Modern::Perl;
2 use utf8;
3 use Encode qw( encode_utf8 );
4
5 return {
6     bug_number => undef,
7     description => 'Increase DBRev for 21.12',
8     up => sub {
9         my ($args) = @_;
10         my ($dbh, $out) = @$args{qw(dbh out)};
11
12         say $out encode_utf8 '📜 All that is gold does not glitter,';
13         say $out encode_utf8 '📜 Not all those who wander are lost;';
14         say $out encode_utf8 '📜 The old that is strong does not wither,';
15         say $out encode_utf8 '📜 Deep roots are not reached by the frost.';
16     },
17 }