Koha 22.06 - start of a new dev cycle
[koha.git] / installer / data / mysql / db_revs / 220600000.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 22.06',
8     up => sub {
9         my ($args) = @_;
10         my ($dbh, $out) = @$args{qw(dbh out)};
11
12         say $out encode_utf8 '📜 The road of excess';
13         say $out encode_utf8 '📜 leads to the palace of wisdom;';
14         say $out encode_utf8 '📜 for we never know what is enough';
15         say $out encode_utf8 '📜 until we know what is more than enough.';
16     },
17 }