@@ -, +, @@ --- Koha/Schema/Result/BorrowerModification.pm | 6 ++++++ Koha/Schema/Result/Deletedborrower.pm | 9 +++++++++ 2 files changed, 15 insertions(+) --- a/Koha/Schema/Result/BorrowerModification.pm +++ a/Koha/Schema/Result/BorrowerModification.pm @@ -621,6 +621,12 @@ __PACKAGE__->set_primary_key("verification_token", "borrowernumber"); # Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-01-24 20:50:45 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7WfMeXobnCTp98TlYjtWLg +__PACKAGE__->add_columns( + '+lost' => { is_boolean => 1 }, + '+gonenoaddress' => { is_boolean => 1 }, + '+autorenewal' => { is_boolean => 1 } +); + sub koha_object_class { 'Koha::Patron::Modification'; } --- a/Koha/Schema/Result/Deletedborrower.pm +++ a/Koha/Schema/Result/Deletedborrower.pm @@ -661,6 +661,15 @@ __PACKAGE__->add_columns( # Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-01-23 17:37:01 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7DGOgltcqZKLv6u1BOnouw +__PACKAGE__->add_columns( + '+anonymized' => { is_boolean => 1 }, + '+lost' => { is_boolean => 1 }, + '+gonenoaddress' => { is_boolean => 1 }, + '+privacy_guarantor_fines' => { is_boolean => 1 }, + '+autorenewal' => { is_boolean => 1 } +); + + sub koha_objects_class { 'Koha::Old::Patrons'; } --