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

(-)a/Koha/Schema/Result/Borrower.pm (+9 lines)
Lines 81-86 any other names associated with the patron/borrower Link Here
81
81
82
initials for your patron/borrower
82
initials for your patron/borrower
83
83
84
=head2 pronouns
85
86
  data_type: 'longtext'
87
  is_nullable: 1
88
89
patron/borrower's pronouns
90
84
=head2 streetnumber
91
=head2 streetnumber
85
92
86
  data_type: 'tinytext'
93
  data_type: 'tinytext'
Lines 659-664 __PACKAGE__->add_columns( Link Here
659
  { data_type => "longtext", is_nullable => 1 },
666
  { data_type => "longtext", is_nullable => 1 },
660
  "initials",
667
  "initials",
661
  { data_type => "mediumtext", is_nullable => 1 },
668
  { data_type => "mediumtext", is_nullable => 1 },
669
  "pronouns",
670
  { data_type => "longtext", is_nullable => 1 },
662
  "streetnumber",
671
  "streetnumber",
663
  { data_type => "tinytext", is_nullable => 1 },
672
  { data_type => "tinytext", is_nullable => 1 },
664
  "streettype",
673
  "streettype",
(-)a/Koha/Schema/Result/BorrowerModification.pm (+7 lines)
Lines 86-91 patron/borrower's middle name Link Here
86
  data_type: 'mediumtext'
86
  data_type: 'mediumtext'
87
  is_nullable: 1
87
  is_nullable: 1
88
88
89
=head2 pronouns
90
91
  data_type: 'longtext'
92
  is_nullable: 1
93
89
=head2 streetnumber
94
=head2 streetnumber
90
95
91
  data_type: 'varchar'
96
  data_type: 'varchar'
Lines 468-473 __PACKAGE__->add_columns( Link Here
468
  { data_type => "longtext", is_nullable => 1 },
473
  { data_type => "longtext", is_nullable => 1 },
469
  "initials",
474
  "initials",
470
  { data_type => "mediumtext", is_nullable => 1 },
475
  { data_type => "mediumtext", is_nullable => 1 },
476
  "pronouns",
477
  { data_type => "longtext", is_nullable => 1 },
471
  "streetnumber",
478
  "streetnumber",
472
  { data_type => "varchar", is_nullable => 1, size => 10 },
479
  { data_type => "varchar", is_nullable => 1, size => 10 },
473
  "streettype",
480
  "streettype",
(-)a/Koha/Schema/Result/Deletedborrower.pm (-1 / +9 lines)
Lines 81-86 any other names associated with the patron/borrower Link Here
81
81
82
initials for your patron/borrower
82
initials for your patron/borrower
83
83
84
=head2 pronouns
85
86
  data_type: 'longtext'
87
  is_nullable: 1
88
89
patron/borrower's pronouns
90
84
=head2 streetnumber
91
=head2 streetnumber
85
92
86
  data_type: 'tinytext'
93
  data_type: 'tinytext'
Lines 656-661 __PACKAGE__->add_columns( Link Here
656
  { data_type => "longtext", is_nullable => 1 },
663
  { data_type => "longtext", is_nullable => 1 },
657
  "initials",
664
  "initials",
658
  { data_type => "mediumtext", is_nullable => 1 },
665
  { data_type => "mediumtext", is_nullable => 1 },
666
  "pronouns",
667
  { data_type => "longtext", is_nullable => 1 },
659
  "streetnumber",
668
  "streetnumber",
660
  { data_type => "tinytext", is_nullable => 1 },
669
  { data_type => "tinytext", is_nullable => 1 },
661
  "streettype",
670
  "streettype",
662
- 

Return to bug 10950