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>
28 lines
1.1 KiB
Perl
Executable file
28 lines
1.1 KiB
Perl
Executable file
use Modern::Perl;
|
|
|
|
return {
|
|
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`
|
|
});
|
|
}
|
|
},
|
|
}
|