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>
23 lines
693 B
Perl
Executable file
23 lines
693 B
Perl
Executable file
use Modern::Perl;
|
|
|
|
return {
|
|
bug_number => "20472",
|
|
description => "Add columns format and urls in article_requests table",
|
|
up => sub {
|
|
my ($args) = @_;
|
|
my $dbh = $args->{dbh};
|
|
|
|
unless ( column_exists('article_requests', 'format') ) {
|
|
$dbh->do(q|
|
|
ALTER TABLE article_requests
|
|
ADD COLUMN `format` enum('PHOTOCOPY', 'SCAN') NOT NULL DEFAULT 'PHOTOCOPY' AFTER notes
|
|
|);
|
|
}
|
|
unless ( column_exists('article_requests', 'urls') ) {
|
|
$dbh->do(q|
|
|
ALTER TABLE article_requests
|
|
ADD COLUMN `urls` MEDIUMTEXT AFTER format
|
|
|);
|
|
}
|
|
},
|
|
}
|