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

(-)a/Koha/Schema/Result/Borrower.pm (+8 lines)
Lines 414-419 __PACKAGE__->table("borrowers"); Link Here
414
  default_value: 0
414
  default_value: 0
415
  is_nullable: 0
415
  is_nullable: 0
416
416
417
=head2 primary_contact_method
418
419
  data_type: 'varchar'
420
  is_nullable: 1
421
  size: 45
422
417
=head2 checkprevcheckout
423
=head2 checkprevcheckout
418
424
419
  data_type: 'varchar'
425
  data_type: 'varchar'
Lines 629-634 __PACKAGE__->add_columns( Link Here
629
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
635
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
630
  "privacy_guarantor_checkouts",
636
  "privacy_guarantor_checkouts",
631
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
637
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
638
  "primary_contact_method",
639
  { data_type => "varchar", is_nullable => 1, size => 45 },
632
  "checkprevcheckout",
640
  "checkprevcheckout",
633
  {
641
  {
634
    data_type => "varchar",
642
    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 585-590 __PACKAGE__->add_columns( Link Here
585
  { data_type => "varchar", is_nullable => 1, size => 50 },
591
  { data_type => "varchar", is_nullable => 1, size => 50 },
586
  "privacy",
592
  "privacy",
587
  { data_type => "integer", is_nullable => 1 },
593
  { data_type => "integer", is_nullable => 1 },
594
  "primary_contact_method",
595
  { data_type => "varchar", is_nullable => 1, size => 45 },
588
  "extended_attributes",
596
  "extended_attributes",
589
  { data_type => "mediumtext", is_nullable => 1 },
597
  { data_type => "mediumtext", is_nullable => 1 },
590
  "gdpr_proc_consent",
598
  "gdpr_proc_consent",
(-)a/Koha/Schema/Result/Deletedborrower.pm (-1 / +8 lines)
Lines 411-416 __PACKAGE__->table("deletedborrowers"); Link Here
411
  default_value: 0
411
  default_value: 0
412
  is_nullable: 0
412
  is_nullable: 0
413
413
414
=head2 primary_contact_method
415
416
  data_type: 'varchar'
417
  is_nullable: 1
418
  size: 45
419
414
=head2 checkprevcheckout
420
=head2 checkprevcheckout
415
421
416
  data_type: 'varchar'
422
  data_type: 'varchar'
Lines 614-619 __PACKAGE__->add_columns( Link Here
614
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
620
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
615
  "privacy_guarantor_checkouts",
621
  "privacy_guarantor_checkouts",
616
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
622
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
623
  "primary_contact_method",
624
  { data_type => "varchar", is_nullable => 1, size => 45 },
617
  "checkprevcheckout",
625
  "checkprevcheckout",
618
  {
626
  {
619
    data_type => "varchar",
627
    data_type => "varchar",
620
- 

Return to bug 11879