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

(-)a/Koha/Schema/Result/Borrower.pm (+8 lines)
Lines 535-540 controls if relatives can see this patron's fines Link Here
535
535
536
controls if relatives can see this patron's checkouts
536
controls if relatives can see this patron's checkouts
537
537
538
=head2 primary_contact_method
539
540
  data_type: 'varchar'
541
  is_nullable: 1
542
  size: 45
543
538
=head2 checkprevcheckout
544
=head2 checkprevcheckout
539
545
540
  data_type: 'varchar'
546
  data_type: 'varchar'
Lines 752-757 __PACKAGE__->add_columns( Link Here
752
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
758
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
753
  "privacy_guarantor_checkouts",
759
  "privacy_guarantor_checkouts",
754
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
760
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
761
  "primary_contact_method",
762
  { data_type => "varchar", is_nullable => 1, size => 45 },
755
  "checkprevcheckout",
763
  "checkprevcheckout",
756
  {
764
  {
757
    data_type => "varchar",
765
    data_type => "varchar",
(-)a/Koha/Schema/Result/BorrowerModification.pm (+8 lines)
Lines 410-415 __PACKAGE__->table("borrower_modifications"); Link Here
410
  data_type: 'integer'
410
  data_type: 'integer'
411
  is_nullable: 1
411
  is_nullable: 1
412
412
413
=head2 primary_contact_method
414
415
  data_type: 'varchar'
416
  is_nullable: 1
417
  size: 45
418
413
=head2 extended_attributes
419
=head2 extended_attributes
414
420
415
  data_type: 'mediumtext'
421
  data_type: 'mediumtext'
Lines 587-592 __PACKAGE__->add_columns( Link Here
587
  { data_type => "varchar", is_nullable => 1, size => 50 },
593
  { data_type => "varchar", is_nullable => 1, size => 50 },
588
  "privacy",
594
  "privacy",
589
  { data_type => "integer", is_nullable => 1 },
595
  { data_type => "integer", is_nullable => 1 },
596
  "primary_contact_method",
597
  { data_type => "varchar", is_nullable => 1, size => 45 },
590
  "extended_attributes",
598
  "extended_attributes",
591
  { data_type => "mediumtext", is_nullable => 1 },
599
  { data_type => "mediumtext", is_nullable => 1 },
592
  "gdpr_proc_consent",
600
  "gdpr_proc_consent",
(-)a/Koha/Schema/Result/Deletedborrower.pm (-1 / +8 lines)
Lines 532-537 controls if relatives can see this patron's fines Link Here
532
532
533
controls if relatives can see this patron's checkouts
533
controls if relatives can see this patron's checkouts
534
534
535
=head2 primary_contact_method
536
537
  data_type: 'varchar'
538
  is_nullable: 1
539
  size: 45
540
535
=head2 checkprevcheckout
541
=head2 checkprevcheckout
536
542
537
  data_type: 'varchar'
543
  data_type: 'varchar'
Lines 737-742 __PACKAGE__->add_columns( Link Here
737
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
743
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
738
  "privacy_guarantor_checkouts",
744
  "privacy_guarantor_checkouts",
739
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
745
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
746
  "primary_contact_method",
747
  { data_type => "varchar", is_nullable => 1, size => 45 },
740
  "checkprevcheckout",
748
  "checkprevcheckout",
741
  {
749
  {
742
    data_type => "varchar",
750
    data_type => "varchar",
743
- 

Return to bug 11879