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

(-)a/Koha/Schema/Result/Borrower.pm (-2 / +11 lines)
Lines 53-58 patron/borrower's last name (surname) Link Here
53
53
54
patron/borrower's first name
54
patron/borrower's first name
55
55
56
=head2 preferred_name
57
58
  data_type: 'longtext'
59
  is_nullable: 1
60
61
patron/borrower's preferred name
62
56
=head2 middle_name
63
=head2 middle_name
57
64
58
  data_type: 'longtext'
65
  data_type: 'longtext'
Lines 666-671 __PACKAGE__->add_columns( Link Here
666
  { data_type => "longtext", is_nullable => 1 },
673
  { data_type => "longtext", is_nullable => 1 },
667
  "firstname",
674
  "firstname",
668
  { data_type => "mediumtext", is_nullable => 1 },
675
  { data_type => "mediumtext", is_nullable => 1 },
676
  "preferred_name",
677
  { data_type => "longtext", is_nullable => 1 },
669
  "middle_name",
678
  "middle_name",
670
  { data_type => "longtext", is_nullable => 1 },
679
  { data_type => "longtext", is_nullable => 1 },
671
  "title",
680
  "title",
Lines 2188-2195 Composing rels: L</user_permissions> -> permission Link Here
2188
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission");
2197
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission");
2189
2198
2190
2199
2191
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-05-02 11:36:36
2200
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-10-30 11:03:30
2192
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jUOMoSonNmA3KwtZKVxqOA
2201
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3bj8Rgt0TTzTDLts9lx//w
2193
2202
2194
__PACKAGE__->has_many(
2203
__PACKAGE__->has_many(
2195
  "restrictions",
2204
  "restrictions",
(-)a/Koha/Schema/Result/BorrowerModification.pm (-2 / +11 lines)
Lines 64-69 __PACKAGE__->table("borrower_modifications"); Link Here
64
  data_type: 'mediumtext'
64
  data_type: 'mediumtext'
65
  is_nullable: 1
65
  is_nullable: 1
66
66
67
=head2 preferred_name
68
69
  data_type: 'longtext'
70
  is_nullable: 1
71
72
patron/borrower's preferred name
73
67
=head2 middle_name
74
=head2 middle_name
68
75
69
  data_type: 'longtext'
76
  data_type: 'longtext'
Lines 471-476 __PACKAGE__->add_columns( Link Here
471
  { data_type => "longtext", is_nullable => 1 },
478
  { data_type => "longtext", is_nullable => 1 },
472
  "firstname",
479
  "firstname",
473
  { data_type => "mediumtext", is_nullable => 1 },
480
  { data_type => "mediumtext", is_nullable => 1 },
481
  "preferred_name",
482
  { data_type => "longtext", is_nullable => 1 },
474
  "middle_name",
483
  "middle_name",
475
  { data_type => "longtext", is_nullable => 1 },
484
  { data_type => "longtext", is_nullable => 1 },
476
  "title",
485
  "title",
Lines 646-653 __PACKAGE__->add_columns( Link Here
646
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
655
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
647
656
648
657
649
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-11-08 13:26:34
658
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-10-30 11:03:30
650
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:pgmClJsT12pxLZHRYrRY9g
659
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:n3MrZhM5h42hR/728GEnvg
651
660
652
sub koha_object_class {
661
sub koha_object_class {
653
    'Koha::Patron::Modification';
662
    'Koha::Patron::Modification';
(-)a/Koha/Schema/Result/Deletedborrower.pm (-2 / +11 lines)
Lines 53-58 patron/borrower's last name (surname) Link Here
53
53
54
patron/borrower's first name
54
patron/borrower's first name
55
55
56
=head2 preferred_name
57
58
  data_type: 'longtext'
59
  is_nullable: 1
60
61
patron/borrower's preferred name
62
56
=head2 middle_name
63
=head2 middle_name
57
64
58
  data_type: 'longtext'
65
  data_type: 'longtext'
Lines 663-668 __PACKAGE__->add_columns( Link Here
663
  { data_type => "longtext", is_nullable => 1 },
670
  { data_type => "longtext", is_nullable => 1 },
664
  "firstname",
671
  "firstname",
665
  { data_type => "mediumtext", is_nullable => 1 },
672
  { data_type => "mediumtext", is_nullable => 1 },
673
  "preferred_name",
674
  { data_type => "longtext", is_nullable => 1 },
666
  "middle_name",
675
  "middle_name",
667
  { data_type => "longtext", is_nullable => 1 },
676
  { data_type => "longtext", is_nullable => 1 },
668
  "title",
677
  "title",
Lines 848-855 __PACKAGE__->add_columns( Link Here
848
);
857
);
849
858
850
859
851
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-11-01 18:21:38
860
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-10-30 11:03:30
852
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WdNGUFdglTb3Heu+VjLWFw
861
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:n8UzcZLEhIy+rd+T3q1CEA
853
862
854
__PACKAGE__->add_columns(
863
__PACKAGE__->add_columns(
855
    '+anonymized'              => { is_boolean => 1 },
864
    '+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-30 11:03:30
441
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WVT+As1+G9EJ2laDaGWE4A
441
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:B+OBYozuJBtsh22U5cOtfQ
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-30 11:03:30
469
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6sYYJBDau/Ol8U95p4psKQ
469
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CYOt/wKwyJR+VGt4Sw/h6Q
470
470
471
__PACKAGE__->belongs_to(
471
__PACKAGE__->belongs_to(
472
  "item",
472
  "item",
473
- 

Return to bug 28633