Koha/installer/data/mysql/db_revs/210600009.pl
Jonathan Druart 64ccbdb8f2 Bug 25078: Move DB revs up to 21.06.00.016
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2021-08-16 11:55:56 +02:00

23 lines
686 B
Perl

use Modern::Perl;
{
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
|);
}
},
}