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

(-)a/Koha/Schema/Result/Borrower.pm (+8 lines)
Lines 527-532 controls if relatives can see this patron's fines Link Here
527
527
528
controls if relatives can see this patron's checkouts
528
controls if relatives can see this patron's checkouts
529
529
530
=head2 primary_contact_method
531
532
  data_type: 'varchar'
533
  is_nullable: 1
534
  size: 45
535
530
=head2 checkprevcheckout
536
=head2 checkprevcheckout
531
537
532
  data_type: 'varchar'
538
  data_type: 'varchar'
Lines 742-747 __PACKAGE__->add_columns( Link Here
742
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
748
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
743
  "privacy_guarantor_checkouts",
749
  "privacy_guarantor_checkouts",
744
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
750
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
751
  "primary_contact_method",
752
  { data_type => "varchar", is_nullable => 1, size => 45 },
745
  "checkprevcheckout",
753
  "checkprevcheckout",
746
  {
754
  {
747
    data_type => "varchar",
755
    data_type => "varchar",
(-)a/Koha/Schema/Result/BorrowerModification.pm (+8 lines)
Lines 404-409 __PACKAGE__->table("borrower_modifications"); Link Here
404
  data_type: 'integer'
404
  data_type: 'integer'
405
  is_nullable: 1
405
  is_nullable: 1
406
406
407
=head2 primary_contact_method
408
409
  data_type: 'varchar'
410
  is_nullable: 1
411
  size: 45
412
407
=head2 extended_attributes
413
=head2 extended_attributes
408
414
409
  data_type: 'mediumtext'
415
  data_type: 'mediumtext'
Lines 579-584 __PACKAGE__->add_columns( Link Here
579
  { data_type => "varchar", is_nullable => 1, size => 50 },
585
  { data_type => "varchar", is_nullable => 1, size => 50 },
580
  "privacy",
586
  "privacy",
581
  { data_type => "integer", is_nullable => 1 },
587
  { data_type => "integer", is_nullable => 1 },
588
  "primary_contact_method",
589
  { data_type => "varchar", is_nullable => 1, size => 45 },
582
  "extended_attributes",
590
  "extended_attributes",
583
  { data_type => "mediumtext", is_nullable => 1 },
591
  { data_type => "mediumtext", is_nullable => 1 },
584
  "gdpr_proc_consent",
592
  "gdpr_proc_consent",
(-)a/Koha/Schema/Result/Deletedborrower.pm (-1 / +8 lines)
Lines 524-529 controls if relatives can see this patron's fines Link Here
524
524
525
controls if relatives can see this patron's checkouts
525
controls if relatives can see this patron's checkouts
526
526
527
=head2 primary_contact_method
528
529
  data_type: 'varchar'
530
  is_nullable: 1
531
  size: 45
532
527
=head2 checkprevcheckout
533
=head2 checkprevcheckout
528
534
529
  data_type: 'varchar'
535
  data_type: 'varchar'
Lines 727-732 __PACKAGE__->add_columns( Link Here
727
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
733
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
728
  "privacy_guarantor_checkouts",
734
  "privacy_guarantor_checkouts",
729
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
735
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
736
  "primary_contact_method",
737
  { data_type => "varchar", is_nullable => 1, size => 45 },
730
  "checkprevcheckout",
738
  "checkprevcheckout",
731
  {
739
  {
732
    data_type => "varchar",
740
    data_type => "varchar",
733
- 

Return to bug 11879