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

(-)a/Koha/Schema/Result/Borrower.pm (+8 lines)
Lines 413-418 __PACKAGE__->table("borrowers"); Link Here
413
  default_value: 0
413
  default_value: 0
414
  is_nullable: 0
414
  is_nullable: 0
415
415
416
=head2 primary_contact_method
417
418
  data_type: 'varchar'
419
  is_nullable: 1
420
  size: 45
421
416
=head2 checkprevcheckout
422
=head2 checkprevcheckout
417
423
418
  data_type: 'varchar'
424
  data_type: 'varchar'
Lines 622-627 __PACKAGE__->add_columns( Link Here
622
  { data_type => "integer", default_value => 1, is_nullable => 0 },
628
  { data_type => "integer", default_value => 1, is_nullable => 0 },
623
  "privacy_guarantor_checkouts",
629
  "privacy_guarantor_checkouts",
624
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
630
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
631
  "primary_contact_method",
632
  { data_type => "varchar", is_nullable => 1, size => 45 },
625
  "checkprevcheckout",
633
  "checkprevcheckout",
626
  {
634
  {
627
    data_type => "varchar",
635
    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: 'text'
421
  data_type: 'text'
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 => "text", is_nullable => 1 },
591
  { data_type => "text", is_nullable => 1 },
584
);
592
);
(-)a/Koha/Schema/Result/Deletedborrower.pm (-1 / +8 lines)
Lines 410-415 __PACKAGE__->table("deletedborrowers"); Link Here
410
  default_value: 0
410
  default_value: 0
411
  is_nullable: 0
411
  is_nullable: 0
412
412
413
=head2 primary_contact_method
414
415
  data_type: 'varchar'
416
  is_nullable: 1
417
  size: 45
418
413
=head2 checkprevcheckout
419
=head2 checkprevcheckout
414
420
415
  data_type: 'varchar'
421
  data_type: 'varchar'
Lines 607-612 __PACKAGE__->add_columns( Link Here
607
  { data_type => "integer", default_value => 1, is_nullable => 0 },
613
  { data_type => "integer", default_value => 1, is_nullable => 0 },
608
  "privacy_guarantor_checkouts",
614
  "privacy_guarantor_checkouts",
609
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
615
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
616
  "primary_contact_method",
617
  { data_type => "varchar", is_nullable => 1, size => 45 },
610
  "checkprevcheckout",
618
  "checkprevcheckout",
611
  {
619
  {
612
    data_type => "varchar",
620
    data_type => "varchar",
613
- 

Return to bug 11879