Koha/installer/data/mysql/db_revs/210600002.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

28 lines
1.1 KiB
Perl

use Modern::Perl;
{
bug_number => "28490",
description => "Bring back accidentally deleted relationship columns",
up => sub {
my ($args) = @_;
my $dbh = $args->{dbh};
if( !column_exists( 'borrower_modifications', 'relationship' ) ) {
$dbh->do(q{
ALTER TABLE borrower_modifications ADD COLUMN `relationship` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL AFTER `borrowernotes`
});
}
if( !column_exists( 'borrowers', 'relationship' ) ) {
$dbh->do(q{
ALTER TABLE borrowers ADD COLUMN `relationship` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'used for children to include the relationship to their guarantor' AFTER `borrowernotes`
});
}
if( !column_exists( 'deletedborrowers', 'relationship' ) ) {
$dbh->do(q{
ALTER TABLE deletedborrowers ADD COLUMN `relationship` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'used for children to include the relationship to their guarantor' AFTER `borrowernotes`
});
}
},
}