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 title
63
=head2 title
57
64
58
  data_type: 'longtext'
65
  data_type: 'longtext'
Lines 636-641 __PACKAGE__->add_columns( Link Here
636
  { data_type => "longtext", is_nullable => 1 },
643
  { data_type => "longtext", is_nullable => 1 },
637
  "firstname",
644
  "firstname",
638
  { data_type => "mediumtext", is_nullable => 1 },
645
  { data_type => "mediumtext", is_nullable => 1 },
646
  "preferred_name",
647
  { data_type => "longtext", is_nullable => 1 },
639
  "title",
648
  "title",
640
  { data_type => "longtext", is_nullable => 1 },
649
  { data_type => "longtext", is_nullable => 1 },
641
  "othernames",
650
  "othernames",
Lines 1955-1962 Composing rels: L</user_permissions> -> permission Link Here
1955
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission");
1964
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission");
1956
1965
1957
1966
1958
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-03-24 10:20:07
1967
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-04-26 15:44:56
1959
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:srYT5wjg7Jhy5CpmDjWv/g
1968
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BNYg8AM1LhIgqsgYpBfnrg
1960
1969
1961
__PACKAGE__->has_many(
1970
__PACKAGE__->has_many(
1962
  "extended_attributes",
1971
  "extended_attributes",
(-)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 title
74
=head2 title
68
75
69
  data_type: 'longtext'
76
  data_type: 'longtext'
Lines 453-458 __PACKAGE__->add_columns( Link Here
453
  { data_type => "longtext", is_nullable => 1 },
460
  { data_type => "longtext", is_nullable => 1 },
454
  "firstname",
461
  "firstname",
455
  { data_type => "mediumtext", is_nullable => 1 },
462
  { data_type => "mediumtext", is_nullable => 1 },
463
  "preferred_name",
464
  { data_type => "longtext", is_nullable => 1 },
456
  "title",
465
  "title",
457
  { data_type => "longtext", is_nullable => 1 },
466
  { data_type => "longtext", is_nullable => 1 },
458
  "othernames",
467
  "othernames",
Lines 622-629 __PACKAGE__->add_columns( Link Here
622
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
631
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
623
632
624
633
625
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-07-12 13:40:00
634
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-04-26 15:44:56
626
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6giYT5URks8+6VnAs/rtkg
635
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qqoo4OYgU38wEWmKz9hASQ
627
636
628
sub koha_object_class {
637
sub koha_object_class {
629
    'Koha::Patron::Modification';
638
    'Koha::Patron::Modification';
(-)a/Koha/Schema/Result/Deletedborrower.pm (-3 / +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 title
63
=head2 title
57
64
58
  data_type: 'longtext'
65
  data_type: 'longtext'
Lines 633-638 __PACKAGE__->add_columns( Link Here
633
  { data_type => "longtext", is_nullable => 1 },
640
  { data_type => "longtext", is_nullable => 1 },
634
  "firstname",
641
  "firstname",
635
  { data_type => "mediumtext", is_nullable => 1 },
642
  { data_type => "mediumtext", is_nullable => 1 },
643
  "preferred_name",
644
  { data_type => "longtext", is_nullable => 1 },
636
  "title",
645
  "title",
637
  { data_type => "longtext", is_nullable => 1 },
646
  { data_type => "longtext", is_nullable => 1 },
638
  "othernames",
647
  "othernames",
Lines 810-817 __PACKAGE__->add_columns( Link Here
810
);
819
);
811
820
812
821
813
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-03-24 10:20:07
822
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-04-26 15:44:56
814
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:JvVxPJOrg5reWvl+gg9Q2A
823
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WxFQWawMLr/7PQ67TUpNNg
815
824
816
__PACKAGE__->add_columns(
825
__PACKAGE__->add_columns(
817
    '+anonymized'    => { is_boolean => 1 },
826
    '+anonymized'    => { is_boolean => 1 },
818
- 

Return to bug 28633