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

(-)a/Koha/Schema/Result/Borrower.pm (-1 / +2 lines)
Lines 1650-1656 __PACKAGE__->add_columns( Link Here
1650
    '+anonymized'    => { is_boolean => 1 },
1650
    '+anonymized'    => { is_boolean => 1 },
1651
    '+lost'          => { is_boolean => 1 },
1651
    '+lost'          => { is_boolean => 1 },
1652
    '+gonenoaddress' => { is_boolean => 1 },
1652
    '+gonenoaddress' => { is_boolean => 1 },
1653
    '+privacy_guarantor_fines' => { is_boolean => 1 }
1653
    '+privacy_guarantor_fines' => { is_boolean => 1 },
1654
    '+autorenew_checkouts' => { is_boolean => 1 }
1654
);
1655
);
1655
1656
1656
sub koha_objects_class {
1657
sub koha_objects_class {
(-)a/Koha/Schema/Result/Deletedborrower.pm (-1 / +8 lines)
Lines 661-666 __PACKAGE__->add_columns( Link Here
661
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-28 19:07:50
661
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-28 19:07:50
662
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GajsOHHe926t+9ukiJIXdw
662
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GajsOHHe926t+9ukiJIXdw
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
    '+autorenew_checkouts' => { is_boolean => 1 }
670
);
671
664
sub koha_objects_class {
672
sub koha_objects_class {
665
    'Koha::Old::Patrons';
673
    'Koha::Old::Patrons';
666
}
674
}
667
- 

Return to bug 24476