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

(-)a/Koha/Schema/Result/Borrower.pm (-13 / +7 lines)
Lines 451-462 __PACKAGE__->table("borrowers"); Link Here
451
  data_type: 'mediumtext'
451
  data_type: 'mediumtext'
452
  is_nullable: 1
452
  is_nullable: 1
453
453
454
=head2 flgAnonymized
454
=head2 anonymized
455
455
456
  accessor: 'flg_anonymized'
457
  data_type: 'tinyint'
456
  data_type: 'tinyint'
458
  default_value: 0
457
  default_value: 0
459
  is_nullable: 1
458
  is_nullable: 0
460
459
461
=cut
460
=cut
462
461
Lines 660-672 __PACKAGE__->add_columns( Link Here
660
  { data_type => "integer", default_value => 0, is_nullable => 1 },
659
  { data_type => "integer", default_value => 0, is_nullable => 1 },
661
  "overdrive_auth_token",
660
  "overdrive_auth_token",
662
  { data_type => "mediumtext", is_nullable => 1 },
661
  { data_type => "mediumtext", is_nullable => 1 },
663
  "flgAnonymized",
662
  "anonymized",
664
  {
663
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
665
    accessor      => "flg_anonymized",
666
    data_type     => "tinyint",
667
    default_value => 0,
668
    is_nullable   => 1,
669
  },
670
);
664
);
671
665
672
=head1 PRIMARY KEY
666
=head1 PRIMARY KEY
Lines 1535-1542 Composing rels: L</aqorder_users> -> ordernumber Link Here
1535
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1529
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1536
1530
1537
1531
1538
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-04-17 11:11:33
1532
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2019-04-16 20:48:40
1539
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ZkPU/EUsZVXiRoQ1E8NMbw
1533
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:sttZE1wLs9TCWLRGIy5/bA
1540
1534
1541
__PACKAGE__->belongs_to(
1535
__PACKAGE__->belongs_to(
1542
    "guarantor",
1536
    "guarantor",
Lines 1545-1551 __PACKAGE__->belongs_to( Link Here
1545
);
1539
);
1546
1540
1547
__PACKAGE__->add_columns(
1541
__PACKAGE__->add_columns(
1548
    '+flgAnonymized' => { is_boolean => 1 },
1542
    '+anonymized'    => { is_boolean => 1 },
1549
    '+lost'          => { is_boolean => 1 },
1543
    '+lost'          => { is_boolean => 1 },
1550
    '+gonenoaddress' => { is_boolean => 1 }
1544
    '+gonenoaddress' => { is_boolean => 1 }
1551
);
1545
);
(-)a/Koha/Schema/Result/Deletedborrower.pm (-13 / +6 lines)
Lines 448-459 __PACKAGE__->table("deletedborrowers"); Link Here
448
  data_type: 'mediumtext'
448
  data_type: 'mediumtext'
449
  is_nullable: 1
449
  is_nullable: 1
450
450
451
=head2 flgAnonymized
451
=head2 anonymized
452
452
453
  accessor: 'flg_anonymized'
454
  data_type: 'tinyint'
453
  data_type: 'tinyint'
455
  default_value: 0
454
  default_value: 0
456
  is_nullable: 1
455
  is_nullable: 0
457
456
458
=cut
457
=cut
459
458
Lines 645-662 __PACKAGE__->add_columns( Link Here
645
  { data_type => "integer", default_value => 0, is_nullable => 1 },
644
  { data_type => "integer", default_value => 0, is_nullable => 1 },
646
  "overdrive_auth_token",
645
  "overdrive_auth_token",
647
  { data_type => "mediumtext", is_nullable => 1 },
646
  { data_type => "mediumtext", is_nullable => 1 },
648
  "flgAnonymized",
647
  "anonymized",
649
  {
648
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
650
    accessor      => "flg_anonymized",
651
    data_type     => "tinyint",
652
    default_value => 0,
653
    is_nullable   => 1,
654
  },
655
);
649
);
656
650
657
651
658
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-04-17 11:11:33
652
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2019-04-16 20:48:40
659
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9XbNY+E7YqzsiUldTFg6Zg
653
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:46CA3kENo1r+3/vsNrxcIQ
660
654
661
655
662
# You can replace this text with custom code or comments, and it will be preserved on regeneration
656
# You can replace this text with custom code or comments, and it will be preserved on regeneration
663
- 

Return to bug 22729