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

(-)a/Koha/Schema/Result/BorrowerModification.pm (-14 / +6 lines)
Lines 100-108 patron/borrower's middle name Link Here
100
100
101
=head2 streetnumber
101
=head2 streetnumber
102
102
103
  data_type: 'varchar'
103
  data_type: 'tinytext'
104
  is_nullable: 1
104
  is_nullable: 1
105
  size: 10
106
105
107
=head2 streettype
106
=head2 streettype
108
107
Lines 175-183 patron/borrower's middle name Link Here
175
=head2 B_streetnumber
174
=head2 B_streetnumber
176
175
177
  accessor: 'b_streetnumber'
176
  accessor: 'b_streetnumber'
178
  data_type: 'varchar'
177
  data_type: 'tinytext'
179
  is_nullable: 1
178
  is_nullable: 1
180
  size: 10
181
179
182
=head2 B_streettype
180
=head2 B_streettype
183
181
Lines 491-497 __PACKAGE__->add_columns( Link Here
491
  "pronouns",
489
  "pronouns",
492
  { data_type => "longtext", is_nullable => 1 },
490
  { data_type => "longtext", is_nullable => 1 },
493
  "streetnumber",
491
  "streetnumber",
494
  { data_type => "varchar", is_nullable => 1, size => 10 },
492
  { data_type => "tinytext", is_nullable => 1 },
495
  "streettype",
493
  "streettype",
496
  { data_type => "varchar", is_nullable => 1, size => 50 },
494
  { data_type => "varchar", is_nullable => 1, size => 50 },
497
  "address",
495
  "address",
Lines 519-530 __PACKAGE__->add_columns( Link Here
519
  "phonepro",
517
  "phonepro",
520
  { data_type => "mediumtext", is_nullable => 1 },
518
  { data_type => "mediumtext", is_nullable => 1 },
521
  "B_streetnumber",
519
  "B_streetnumber",
522
  {
520
  { accessor => "b_streetnumber", data_type => "tinytext", is_nullable => 1 },
523
    accessor => "b_streetnumber",
524
    data_type => "varchar",
525
    is_nullable => 1,
526
    size => 10,
527
  },
528
  "B_streettype",
521
  "B_streettype",
529
  {
522
  {
530
    accessor => "b_streettype",
523
    accessor => "b_streettype",
Lines 655-662 __PACKAGE__->add_columns( Link Here
655
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
648
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
656
649
657
650
658
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-11-11 11:07:06
651
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-01-07 13:37:57
659
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QOqDkQ+8LuTY6qYrPhsQWw
652
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:yPoytikJG58wj4a+ay+ScQ
660
653
661
__PACKAGE__->add_columns(
654
__PACKAGE__->add_columns(
662
    '+gonenoaddress' => { is_boolean => 1 },
655
    '+gonenoaddress' => { is_boolean => 1 },
663
- 

Return to bug 39601