Jonathan Druart
8b0a44dcb5
% perl -wc installer/data/mysql/atomicupdate/skeleton.pl Useless use of anonymous hash ({}) in void context at installer/data/mysql/atomicupdate/skeleton.pl Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
13 lines
331 B
Perl
Executable file
13 lines
331 B
Perl
Executable file
use Modern::Perl;
|
|
|
|
return {
|
|
bug_number => "28489",
|
|
description => "Modify sessions.a_session from longtext to longblob",
|
|
up => sub {
|
|
my ($args) = @_;
|
|
my $dbh = $args->{dbh};
|
|
|
|
$dbh->do('DELETE FROM sessions');
|
|
$dbh->do('ALTER TABLE sessions MODIFY a_session LONGBLOB NOT NULL');
|
|
},
|
|
}
|