Koha/installer/data/mysql/db_revs/220600000.pl
Tomas Cohen Arazi 554c9cb7d9
Koha 22.06 - start of a new dev cycle
The road of excess
    leads to the palace of wisdom;
    for we never know what is enough
    until we know what is more than enough.

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-05-31 08:43:28 -03:00

17 lines
509 B
Perl
Executable file

use Modern::Perl;
use utf8;
use Encode qw( encode_utf8 );
return {
bug_number => undef,
description => 'Increase DBRev for 22.06',
up => sub {
my ($args) = @_;
my ($dbh, $out) = @$args{qw(dbh out)};
say $out encode_utf8 '📜 The road of excess';
say $out encode_utf8 '📜 leads to the palace of wisdom;';
say $out encode_utf8 '📜 for we never know what is enough';
say $out encode_utf8 '📜 until we know what is more than enough.';
},
}