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

(-)a/Koha/Schema/Result/Borrower.pm (-1 / +2 lines)
Lines 1665-1671 __PACKAGE__->add_columns( Link Here
1665
    '+anonymized'    => { is_boolean => 1 },
1665
    '+anonymized'    => { is_boolean => 1 },
1666
    '+lost'          => { is_boolean => 1 },
1666
    '+lost'          => { is_boolean => 1 },
1667
    '+gonenoaddress' => { is_boolean => 1 },
1667
    '+gonenoaddress' => { is_boolean => 1 },
1668
    '+privacy_guarantor_fines' => { is_boolean => 1 }
1668
    '+privacy_guarantor_fines' => { is_boolean => 1 },
1669
    '+autorenew_checkouts' => { is_boolean => 1 }
1669
);
1670
);
1670
1671
1671
sub koha_objects_class {
1672
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-03-23 11:45:25
661
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-23 11:45:25
662
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fVl4c/8pymGaZBDR3EOrNg
662
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fVl4c/8pymGaZBDR3EOrNg
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