Koha/installer/data/mysql/db_revs/211200000.pl
Fridolin Somers 6f1082166e Koha 21.12 - start of a new dev cycle
All that is gold does not glitter,
Not all those who wander are lost;
The old that is strong does not wither,
Deep roots are not reached by the frost.

Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
2021-12-01 20:12:05 -10:00

17 lines
537 B
Perl
Executable file

use Modern::Perl;
use utf8;
use Encode qw( encode_utf8 );
return {
bug_number => undef,
description => 'Increase DBRev for 21.12',
up => sub {
my ($args) = @_;
my ($dbh, $out) = @$args{qw(dbh out)};
say $out encode_utf8 '📜 All that is gold does not glitter,';
say $out encode_utf8 '📜 Not all those who wander are lost;';
say $out encode_utf8 '📜 The old that is strong does not wither,';
say $out encode_utf8 '📜 Deep roots are not reached by the frost.';
},
}