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

(-)a/Koha/Schema/Result/Borrower.pm (-2 / +16 lines)
Lines 451-456 __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
455
456
  accessor: 'flg_anonymized'
457
  data_type: 'tinyint'
458
  default_value: 0
459
  is_nullable: 1
460
454
=cut
461
=cut
455
462
456
__PACKAGE__->add_columns(
463
__PACKAGE__->add_columns(
Lines 653-658 __PACKAGE__->add_columns( Link Here
653
  { data_type => "integer", default_value => 0, is_nullable => 1 },
660
  { data_type => "integer", default_value => 0, is_nullable => 1 },
654
  "overdrive_auth_token",
661
  "overdrive_auth_token",
655
  { data_type => "mediumtext", is_nullable => 1 },
662
  { data_type => "mediumtext", is_nullable => 1 },
663
  "flgAnonymized",
664
  {
665
    accessor      => "flg_anonymized",
666
    data_type     => "tinyint",
667
    default_value => 0,
668
    is_nullable   => 1,
669
  },
656
);
670
);
657
671
658
=head1 PRIMARY KEY
672
=head1 PRIMARY KEY
Lines 1416-1423 Composing rels: L</aqorder_users> -> ordernumber Link Here
1416
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1430
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1417
1431
1418
1432
1419
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-09-20 13:00:20
1433
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-10-01 14:36:26
1420
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QT6EPIG26F/kNK6prauRgw
1434
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:siRC99pcyZ6P1qeu9Gd9Xw
1421
1435
1422
__PACKAGE__->belongs_to(
1436
__PACKAGE__->belongs_to(
1423
    "guarantor",
1437
    "guarantor",
(-)a/Koha/Schema/Result/Deletedborrower.pm (-3 / +16 lines)
Lines 448-453 __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
452
453
  accessor: 'flg_anonymized'
454
  data_type: 'tinyint'
455
  default_value: 0
456
  is_nullable: 1
457
451
=cut
458
=cut
452
459
453
__PACKAGE__->add_columns(
460
__PACKAGE__->add_columns(
Lines 638-648 __PACKAGE__->add_columns( Link Here
638
  { data_type => "integer", default_value => 0, is_nullable => 1 },
645
  { data_type => "integer", default_value => 0, is_nullable => 1 },
639
  "overdrive_auth_token",
646
  "overdrive_auth_token",
640
  { data_type => "mediumtext", is_nullable => 1 },
647
  { data_type => "mediumtext", is_nullable => 1 },
648
  "flgAnonymized",
649
  {
650
    accessor      => "flg_anonymized",
651
    data_type     => "tinyint",
652
    default_value => 0,
653
    is_nullable   => 1,
654
  },
641
);
655
);
642
656
643
657
644
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53
658
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-10-01 14:36:26
645
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:DNkNHNcv0lkMH6/seu89hg
659
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PtBvhk3jiOBS8D46si7XYQ
646
660
647
661
648
# You can replace this text with custom code or comments, and it will be preserved on regeneration
662
# You can replace this text with custom code or comments, and it will be preserved on regeneration
649
- 

Return to bug 21336