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-05-24 12:15:07
2201
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FOSg3LfHkgeIvq0xdkNXXg
2210
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:bWEvN0rnVlxB0FfP2S4C5g
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-05-24 12:15:07
659
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1wFpRHX6xJf6IAPjB8IKyQ
668
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:U4R5YRFz/y2XvOfw2rNa/Q
660
669
661
sub koha_object_class {
670
sub koha_object_class {
662
    'Koha::Patron::Modification';
671
    'Koha::Patron::Modification';
(-)a/Koha/Schema/Result/CreatorLayout.pm (-4 / +4 lines)
Lines 84-90 __PACKAGE__->table("creator_layouts"); Link Here
84
=head2 scale_width
84
=head2 scale_width
85
85
86
  data_type: 'decimal'
86
  data_type: 'decimal'
87
  default_value: 0.080000
87
  default_value: 0.800000
88
  is_nullable: 0
88
  is_nullable: 0
89
  size: [28,6]
89
  size: [28,6]
90
90
Lines 168-174 __PACKAGE__->add_columns( Link Here
168
  "scale_width",
168
  "scale_width",
169
  {
169
  {
170
    data_type => "decimal",
170
    data_type => "decimal",
171
    default_value => "0.080000",
171
    default_value => "0.800000",
172
    is_nullable => 0,
172
    is_nullable => 0,
173
    size => [28, 6],
173
    size => [28, 6],
174
  },
174
  },
Lines 216-223 __PACKAGE__->add_columns( Link Here
216
__PACKAGE__->set_primary_key("layout_id");
216
__PACKAGE__->set_primary_key("layout_id");
217
217
218
218
219
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-10-25 14:33:42
219
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-05-24 12:12:15
220
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:L7tcMDvHqODxCgENIubFTQ
220
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:T2rvyh+/Oqhehc29lrATmA
221
221
222
222
223
# You can replace this text with custom content, and it will be preserved on regeneration
223
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Deletedborrower.pm (-3 / +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-05-24 12:15:07
861
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:bxcfsi4bNkMwri9aCRwtVw
870
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:pHlJigxx/WIdZZf7jGfo7w
862
871
863
__PACKAGE__->add_columns(
872
__PACKAGE__->add_columns(
864
    '+anonymized'              => { is_boolean => 1 },
873
    '+anonymized'              => { is_boolean => 1 },
865
- 

Return to bug 28633