Bug 14570: Make it possible to add multiple guarantors to a record
[koha.git] / tools / import_borrowers.pl
index ec784be..4da2cd0 100755 (executable)
@@ -62,6 +62,7 @@ my $extended = C4::Context->preference('ExtendedPatronAttributes');
 
 my @columnkeys = map { $_ ne 'borrowernumber' ? $_ : () } Koha::Patrons->columns();
 push( @columnkeys, 'patron_attributes' ) if $extended;
+push( @columnkeys, qw( relationship guarantor_id  guarantor_firstname guarantor_surname ) );
 
 my $input = CGI->new();