View | Details | Raw Unified | Return to bug 24476
Collapse All | Expand All

(-)a/Koha/Schema/Result/BorrowerModification.pm (+6 lines)
Lines 621-626 __PACKAGE__->set_primary_key("verification_token", "borrowernumber"); Link Here
621
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-01-24 20:50:45
621
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-01-24 20:50:45
622
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7WfMeXobnCTp98TlYjtWLg
622
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7WfMeXobnCTp98TlYjtWLg
623
623
624
__PACKAGE__->add_columns(
625
    '+lost'          => { is_boolean => 1 },
626
    '+gonenoaddress' => { is_boolean => 1 },
627
    '+autorenewal' => { is_boolean => 1 }
628
);
629
624
sub koha_object_class {
630
sub koha_object_class {
625
    'Koha::Patron::Modification';
631
    'Koha::Patron::Modification';
626
}
632
}
(-)a/Koha/Schema/Result/Deletedborrower.pm (-1 / +9 lines)
Lines 661-666 __PACKAGE__->add_columns( Link Here
661
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-01-23 17:37:01
661
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-01-23 17:37:01
662
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7DGOgltcqZKLv6u1BOnouw
662
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7DGOgltcqZKLv6u1BOnouw
663
663
664
__PACKAGE__->add_columns(
665
    '+anonymized'    => { is_boolean => 1 },
666
    '+lost'          => { is_boolean => 1 },
667
    '+gonenoaddress' => { is_boolean => 1 },
668
    '+privacy_guarantor_fines' => { is_boolean => 1 },
669
    '+autorenewal' => { is_boolean => 1 }
670
);
671
672
664
sub koha_objects_class {
673
sub koha_objects_class {
665
    'Koha::Old::Patrons';
674
    'Koha::Old::Patrons';
666
}
675
}
667
- 

Return to bug 24476