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

(-)a/Koha/Schema/Result/Borrower.pm (+9 lines)
Lines 74-79 any other names associated with the patron/borrower Link Here
74
74
75
initials for your patron/borrower
75
initials for your patron/borrower
76
76
77
=head2 pronouns
78
79
  data_type: 'longtext'
80
  is_nullable: 1
81
82
patron/borrower's pronouns
83
77
=head2 streetnumber
84
=head2 streetnumber
78
85
79
  data_type: 'tinytext'
86
  data_type: 'tinytext'
Lines 650-655 __PACKAGE__->add_columns( Link Here
650
  { data_type => "longtext", is_nullable => 1 },
657
  { data_type => "longtext", is_nullable => 1 },
651
  "initials",
658
  "initials",
652
  { data_type => "mediumtext", is_nullable => 1 },
659
  { data_type => "mediumtext", is_nullable => 1 },
660
  "pronouns",
661
  { data_type => "longtext", is_nullable => 1 },
653
  "streetnumber",
662
  "streetnumber",
654
  { data_type => "tinytext", is_nullable => 1 },
663
  { data_type => "tinytext", is_nullable => 1 },
655
  "streettype",
664
  "streettype",
(-)a/Koha/Schema/Result/BorrowerModification.pm (+7 lines)
Lines 79-84 __PACKAGE__->table("borrower_modifications"); Link Here
79
  data_type: 'mediumtext'
79
  data_type: 'mediumtext'
80
  is_nullable: 1
80
  is_nullable: 1
81
81
82
=head2 pronouns
83
84
  data_type: 'longtext'
85
  is_nullable: 1
86
82
=head2 streetnumber
87
=head2 streetnumber
83
88
84
  data_type: 'varchar'
89
  data_type: 'varchar'
Lines 459-464 __PACKAGE__->add_columns( Link Here
459
  { data_type => "longtext", is_nullable => 1 },
464
  { data_type => "longtext", is_nullable => 1 },
460
  "initials",
465
  "initials",
461
  { data_type => "mediumtext", is_nullable => 1 },
466
  { data_type => "mediumtext", is_nullable => 1 },
467
  "pronouns",
468
  { data_type => "longtext", is_nullable => 1 },
462
  "streetnumber",
469
  "streetnumber",
463
  { data_type => "varchar", is_nullable => 1, size => 10 },
470
  { data_type => "varchar", is_nullable => 1, size => 10 },
464
  "streettype",
471
  "streettype",
(-)a/Koha/Schema/Result/Deletedborrower.pm (-1 / +9 lines)
Lines 74-79 any other names associated with the patron/borrower Link Here
74
74
75
initials for your patron/borrower
75
initials for your patron/borrower
76
76
77
=head2 pronouns
78
79
  data_type: 'longtext'
80
  is_nullable: 1
81
82
patron/borrower's pronouns
83
77
=head2 streetnumber
84
=head2 streetnumber
78
85
79
  data_type: 'tinytext'
86
  data_type: 'tinytext'
Lines 647-652 __PACKAGE__->add_columns( Link Here
647
  { data_type => "longtext", is_nullable => 1 },
654
  { data_type => "longtext", is_nullable => 1 },
648
  "initials",
655
  "initials",
649
  { data_type => "mediumtext", is_nullable => 1 },
656
  { data_type => "mediumtext", is_nullable => 1 },
657
  "pronouns",
658
  { data_type => "longtext", is_nullable => 1 },
650
  "streetnumber",
659
  "streetnumber",
651
  { data_type => "tinytext", is_nullable => 1 },
660
  { data_type => "tinytext", is_nullable => 1 },
652
  "streettype",
661
  "streettype",
653
- 

Return to bug 10950