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

(-)a/Koha/Schema/Result/Borrower.pm (-2 / +11 lines)
Lines 60-65 patron/borrower's first name Link Here
60
60
61
patron/borrower's preferred name
61
patron/borrower's preferred name
62
62
63
=head2 sort_name
64
65
  data_type: 'longtext'
66
  is_nullable: 1
67
68
patron/borrower's name to be used for sorting
69
63
=head2 middle_name
70
=head2 middle_name
64
71
65
  data_type: 'longtext'
72
  data_type: 'longtext'
Lines 675-680 __PACKAGE__->add_columns( Link Here
675
  { data_type => "mediumtext", is_nullable => 1 },
682
  { data_type => "mediumtext", is_nullable => 1 },
676
  "preferred_name",
683
  "preferred_name",
677
  { data_type => "longtext", is_nullable => 1 },
684
  { data_type => "longtext", is_nullable => 1 },
685
  "sort_name",
686
  { data_type => "longtext", is_nullable => 1 },
678
  "middle_name",
687
  "middle_name",
679
  { data_type => "longtext", is_nullable => 1 },
688
  { data_type => "longtext", is_nullable => 1 },
680
  "title",
689
  "title",
Lines 2197-2204 Composing rels: L</user_permissions> -> permission Link Here
2197
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission");
2206
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission");
2198
2207
2199
2208
2200
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-05-15 19:22:05
2209
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-10-29 12:20:48
2201
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FOSg3LfHkgeIvq0xdkNXXg
2210
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:e8whbktYiubU8yvMJ7uiqQ
2202
2211
2203
__PACKAGE__->has_many(
2212
__PACKAGE__->has_many(
2204
  "restrictions",
2213
  "restrictions",
(-)a/Koha/Schema/Result/BorrowerModification.pm (-2 / +11 lines)
Lines 71-76 __PACKAGE__->table("borrower_modifications"); Link Here
71
71
72
patron/borrower's preferred name
72
patron/borrower's preferred name
73
73
74
=head2 sort_name
75
76
  data_type: 'longtext'
77
  is_nullable: 1
78
79
patron/borrower's name to be used for sorting
80
74
=head2 middle_name
81
=head2 middle_name
75
82
76
  data_type: 'longtext'
83
  data_type: 'longtext'
Lines 480-485 __PACKAGE__->add_columns( Link Here
480
  { data_type => "mediumtext", is_nullable => 1 },
487
  { data_type => "mediumtext", is_nullable => 1 },
481
  "preferred_name",
488
  "preferred_name",
482
  { data_type => "longtext", is_nullable => 1 },
489
  { data_type => "longtext", is_nullable => 1 },
490
  "sort_name",
491
  { data_type => "longtext", is_nullable => 1 },
483
  "middle_name",
492
  "middle_name",
484
  { data_type => "longtext", is_nullable => 1 },
493
  { data_type => "longtext", is_nullable => 1 },
485
  "title",
494
  "title",
Lines 655-662 __PACKAGE__->add_columns( Link Here
655
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
664
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
656
665
657
666
658
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-05-15 19:22:05
667
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-10-29 12:20:48
659
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1wFpRHX6xJf6IAPjB8IKyQ
668
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:HxX5Rax2PmyZdZFbm8tY0w
660
669
661
sub koha_object_class {
670
sub koha_object_class {
662
    'Koha::Patron::Modification';
671
    'Koha::Patron::Modification';
(-)a/Koha/Schema/Result/Deletedborrower.pm (-2 / +11 lines)
Lines 60-65 patron/borrower's first name Link Here
60
60
61
patron/borrower's preferred name
61
patron/borrower's preferred name
62
62
63
=head2 sort_name
64
65
  data_type: 'longtext'
66
  is_nullable: 1
67
68
patron/borrower's name to be used for sorting
69
63
=head2 middle_name
70
=head2 middle_name
64
71
65
  data_type: 'longtext'
72
  data_type: 'longtext'
Lines 672-677 __PACKAGE__->add_columns( Link Here
672
  { data_type => "mediumtext", is_nullable => 1 },
679
  { data_type => "mediumtext", is_nullable => 1 },
673
  "preferred_name",
680
  "preferred_name",
674
  { data_type => "longtext", is_nullable => 1 },
681
  { data_type => "longtext", is_nullable => 1 },
682
  "sort_name",
683
  { data_type => "longtext", is_nullable => 1 },
675
  "middle_name",
684
  "middle_name",
676
  { data_type => "longtext", is_nullable => 1 },
685
  { data_type => "longtext", is_nullable => 1 },
677
  "title",
686
  "title",
Lines 857-864 __PACKAGE__->add_columns( Link Here
857
);
866
);
858
867
859
868
860
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-05-15 19:22:05
869
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-10-29 12:20:48
861
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:bxcfsi4bNkMwri9aCRwtVw
870
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:tb5MfoUee6l/UdvOXCtsFw
862
871
863
__PACKAGE__->add_columns(
872
__PACKAGE__->add_columns(
864
    '+anonymized'              => { is_boolean => 1 },
873
    '+anonymized'              => { is_boolean => 1 },
(-)a/Koha/Schema/Result/OldReserve.pm (-3 / +3 lines)
Lines 59-65 foreign key from the biblio table defining which bib record this hold is on Link Here
59
  data_type: 'integer'
59
  data_type: 'integer'
60
  is_nullable: 1
60
  is_nullable: 1
61
61
62
links the reserve to the deleted bibliographic record (deletedbiblio.biblionumber)
62
links the hold to the deleted bibliographic record (deletedbiblio.biblionumber)
63
63
64
=head2 item_group_id
64
=head2 item_group_id
65
65
Lines 437-444 __PACKAGE__->belongs_to( Link Here
437
);
437
);
438
438
439
439
440
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-10-28 18:50:07
440
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-10-29 12:20:48
441
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WVT+As1+G9EJ2laDaGWE4A
441
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BzrdZFqL3Vyw65X+Ibs2Bg
442
442
443
__PACKAGE__->belongs_to(
443
__PACKAGE__->belongs_to(
444
  "item",
444
  "item",
(-)a/Koha/Schema/Result/Reserve.pm (-4 / +3 lines)
Lines 62-68 foreign key from the biblio table defining which bib record this hold is on Link Here
62
  data_type: 'integer'
62
  data_type: 'integer'
63
  is_nullable: 1
63
  is_nullable: 1
64
64
65
links the reserve to the deleted bibliographic record (deletedbiblio.biblionumber)
65
links the hold to the deleted bibliographic record (deletedbiblio.biblionumber)
66
66
67
=head2 item_group_id
67
=head2 item_group_id
68
68
Lines 465-472 __PACKAGE__->belongs_to( Link Here
465
);
465
);
466
466
467
467
468
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-10-28 18:50:07
468
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-10-29 12:20:48
469
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6sYYJBDau/Ol8U95p4psKQ
469
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Um75uz+XcD7AoKc86F+7+g
470
470
471
__PACKAGE__->belongs_to(
471
__PACKAGE__->belongs_to(
472
  "item",
472
  "item",
473
- 

Return to bug 28633