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

(-)a/Koha/Schema/Result/Borrower.pm (+8 lines)
Lines 399-404 __PACKAGE__->table("borrowers"); Link Here
399
  default_value: 0
399
  default_value: 0
400
  is_nullable: 0
400
  is_nullable: 0
401
401
402
=head2 primary_contact_method
403
404
  data_type: 'varchar'
405
  is_nullable: 1
406
  size: 45
407
402
=head2 checkprevcheckout
408
=head2 checkprevcheckout
403
409
404
  data_type: 'varchar'
410
  data_type: 'varchar'
Lines 600-605 __PACKAGE__->add_columns( Link Here
600
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
606
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
601
  "privacy_guarantor_checkouts",
607
  "privacy_guarantor_checkouts",
602
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
608
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
609
  "primary_contact_method",
610
  { data_type => "varchar", is_nullable => 1, size => 45 },
603
  "checkprevcheckout",
611
  "checkprevcheckout",
604
  {
612
  {
605
    data_type => "varchar",
613
    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 396-401 __PACKAGE__->table("deletedborrowers"); Link Here
396
  default_value: 0
396
  default_value: 0
397
  is_nullable: 0
397
  is_nullable: 0
398
398
399
=head2 primary_contact_method
400
401
  data_type: 'varchar'
402
  is_nullable: 1
403
  size: 45
404
399
=head2 checkprevcheckout
405
=head2 checkprevcheckout
400
406
401
  data_type: 'varchar'
407
  data_type: 'varchar'
Lines 585-590 __PACKAGE__->add_columns( Link Here
585
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
591
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
586
  "privacy_guarantor_checkouts",
592
  "privacy_guarantor_checkouts",
587
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
593
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
594
  "primary_contact_method",
595
  { data_type => "varchar", is_nullable => 1, size => 45 },
588
  "checkprevcheckout",
596
  "checkprevcheckout",
589
  {
597
  {
590
    data_type => "varchar",
598
    data_type => "varchar",
591
- 

Return to bug 11879