Koha/installer/data/mysql/db_revs/230600000.pl
Tomas Cohen Arazi 00e33f8758
Koha 23.06 - start of a new dev cycle
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2023-05-31 20:53:42 -03:00

18 lines
577 B
Perl
Executable file

use Modern::Perl;
use utf8;
use Encode qw( encode_utf8 );
return {
bug_number => undef,
description => 'Increase DBRev for 23.06',
up => sub {
my ($args) = @_;
my ($dbh, $out) = @$args{qw(dbh out)};
say $out encode_utf8 "📜 Another one bites the dust;";
say $out encode_utf8 "📜 and another one gone and another one gone.";
say $out encode_utf8 "📜 Another one bites the dust.";
say $out encode_utf8 "📜 Hey I'm gonna get you too!";
say $out encode_utf8 "📜 Another one bites the dust.";
},
}