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

(-)a/Koha/Schema/Result/Borrower.pm (-3 / +12 lines)
Lines 458-463 __PACKAGE__->table("borrowers"); Link Here
458
  default_value: 0
458
  default_value: 0
459
  is_nullable: 0
459
  is_nullable: 0
460
460
461
=head2 no_autorenewal
462
463
  data_type: 'tinyint'
464
  default_value: 0
465
  is_nullable: 0
466
461
=cut
467
=cut
462
468
463
__PACKAGE__->add_columns(
469
__PACKAGE__->add_columns(
Lines 662-667 __PACKAGE__->add_columns( Link Here
662
  { data_type => "mediumtext", is_nullable => 1 },
668
  { data_type => "mediumtext", is_nullable => 1 },
663
  "anonymized",
669
  "anonymized",
664
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
670
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
671
  "no_autorenewal",
672
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
665
);
673
);
666
674
667
=head1 PRIMARY KEY
675
=head1 PRIMARY KEY
Lines 1635-1648 Composing rels: L</aqorder_users> -> ordernumber Link Here
1635
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1643
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1636
1644
1637
1645
1638
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-10 14:31:00
1646
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-01-23 01:05:30
1639
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GjJLIOViIFRm185Yjl9vYA
1647
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:zPLFrXghnPy5V+I6W0XBNg
1640
1648
1641
__PACKAGE__->add_columns(
1649
__PACKAGE__->add_columns(
1642
    '+anonymized'    => { is_boolean => 1 },
1650
    '+anonymized'    => { is_boolean => 1 },
1643
    '+lost'          => { is_boolean => 1 },
1651
    '+lost'          => { is_boolean => 1 },
1644
    '+gonenoaddress' => { is_boolean => 1 },
1652
    '+gonenoaddress' => { is_boolean => 1 },
1645
    '+privacy_guarantor_fines' => { is_boolean => 1 }
1653
    '+privacy_guarantor_fines' => { is_boolean => 1 },
1654
    '+no_autorenewal' => { is_boolean => 1 }
1646
);
1655
);
1647
1656
1648
sub koha_objects_class {
1657
sub koha_objects_class {
(-)a/Koha/Schema/Result/Deletedborrower.pm (-3 / +10 lines)
Lines 455-460 __PACKAGE__->table("deletedborrowers"); Link Here
455
  default_value: 0
455
  default_value: 0
456
  is_nullable: 0
456
  is_nullable: 0
457
457
458
=head2 no_autorenewal
459
460
  data_type: 'tinyint'
461
  default_value: 0
462
  is_nullable: 0
463
458
=cut
464
=cut
459
465
460
__PACKAGE__->add_columns(
466
__PACKAGE__->add_columns(
Lines 647-657 __PACKAGE__->add_columns( Link Here
647
  { data_type => "mediumtext", is_nullable => 1 },
653
  { data_type => "mediumtext", is_nullable => 1 },
648
  "anonymized",
654
  "anonymized",
649
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
655
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
656
  "no_autorenewal",
657
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
650
);
658
);
651
659
652
660
653
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-05-22 04:33:29
661
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-01-23 01:05:30
654
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:zK1jC6Wawwj8B2ch9KFByw
662
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wRsxS1VdS2ibTfAXcwiuYA
655
663
656
sub koha_objects_class {
664
sub koha_objects_class {
657
    'Koha::Old::Patrons';
665
    'Koha::Old::Patrons';
658
- 

Return to bug 24476