Bug 28972: Make DB rev idempotent
[koha.git] / installer / data / mysql / atomicupdate / skeleton.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => "BUG_NUMBER",
5     description => "A single line description",
6     up => sub {
7         my ($args) = @_;
8         my ($dbh, $out) = @$args{qw(dbh out)};
9         # Do you stuffs here
10         $dbh->do(q{});
11         # Print useful stuff here
12         say $out "Update is going well so far";
13     },
14 }