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

(-)a/Koha/Schema/Result/Borrower.pm (-6 / +6 lines)
Lines 582-591 controls if relatives can see this patron's checkouts Link Here
582
582
583
=head2 checkprevcheckout
583
=head2 checkprevcheckout
584
584
585
  data_type: 'varchar'
585
  data_type: 'enum'
586
  default_value: 'inherit'
586
  default_value: 'inherit'
587
  extra: {list => ["yes","no","inherit"]}
587
  is_nullable: 0
588
  is_nullable: 0
588
  size: 7
589
589
590
produce a warning for this patron if this item has previously been checked out to this patron if 'yes', not if 'no', defer to category setting if 'inherit'.
590
produce a warning for this patron if this item has previously been checked out to this patron if 'yes', not if 'no', defer to category setting if 'inherit'.
591
591
Lines 832-841 __PACKAGE__->add_columns( Link Here
832
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
832
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
833
  "checkprevcheckout",
833
  "checkprevcheckout",
834
  {
834
  {
835
    data_type => "varchar",
835
    data_type => "enum",
836
    default_value => "inherit",
836
    default_value => "inherit",
837
    extra => { list => ["yes", "no", "inherit"] },
837
    is_nullable => 0,
838
    is_nullable => 0,
838
    size => 7,
839
  },
839
  },
840
  "updated_on",
840
  "updated_on",
841
  {
841
  {
Lines 2197-2204 Composing rels: L</user_permissions> -> permission Link Here
2197
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission");
2197
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission");
2198
2198
2199
2199
2200
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-04-28 16:41:47
2200
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-07-10 07:11:31
2201
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:J1oaW0hFRihEJZ6U+XSwag
2201
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:XFOe2X4k2DUziaNS5pWd/Q
2202
2202
2203
__PACKAGE__->belongs_to(
2203
__PACKAGE__->belongs_to(
2204
  "library",
2204
  "library",
(-)a/Koha/Schema/Result/Category.pm (-6 / +6 lines)
Lines 136-145 Default privacy setting for this patron category Link Here
136
136
137
=head2 checkprevcheckout
137
=head2 checkprevcheckout
138
138
139
  data_type: 'varchar'
139
  data_type: 'enum'
140
  default_value: 'inherit'
140
  default_value: 'inherit'
141
  extra: {list => ["yes","no","inherit"]}
141
  is_nullable: 0
142
  is_nullable: 0
142
  size: 7
143
143
144
produce a warning for this patron category if this item has previously been checked out to this patron if 'yes', not if 'no', defer to syspref setting if 'inherit'.
144
produce a warning for this patron category if this item has previously been checked out to this patron if 'yes', not if 'no', defer to syspref setting if 'inherit'.
145
145
Lines 274-283 __PACKAGE__->add_columns( Link Here
274
  },
274
  },
275
  "checkprevcheckout",
275
  "checkprevcheckout",
276
  {
276
  {
277
    data_type => "varchar",
277
    data_type => "enum",
278
    default_value => "inherit",
278
    default_value => "inherit",
279
    extra => { list => ["yes", "no", "inherit"] },
279
    is_nullable => 0,
280
    is_nullable => 0,
280
    size => 7,
281
  },
281
  },
282
  "can_place_ill_in_opac",
282
  "can_place_ill_in_opac",
283
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
283
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
Lines 410-417 __PACKAGE__->has_many( Link Here
410
);
410
);
411
411
412
412
413
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-12-03 15:46:23
413
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-07-10 07:11:31
414
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jiQq3bW+ZfdYpUpfZq1Rzw
414
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ADt+iDjteg9Jb81L2FMIvg
415
415
416
# You can replace this text with custom code or comments, and it will be preserved on regeneration
416
# You can replace this text with custom code or comments, and it will be preserved on regeneration
417
417
(-)a/Koha/Schema/Result/Deletedborrower.pm (-7 / +6 lines)
Lines 579-588 controls if relatives can see this patron's checkouts Link Here
579
579
580
=head2 checkprevcheckout
580
=head2 checkprevcheckout
581
581
582
  data_type: 'varchar'
582
  data_type: 'enum'
583
  default_value: 'inherit'
583
  default_value: 'inherit'
584
  extra: {list => ["yes","no","inherit"]}
584
  is_nullable: 0
585
  is_nullable: 0
585
  size: 7
586
586
587
produce a warning for this patron if this item has previously been checked out to this patron if 'yes', not if 'no', defer to category setting if 'inherit'.
587
produce a warning for this patron if this item has previously been checked out to this patron if 'yes', not if 'no', defer to category setting if 'inherit'.
588
588
Lines 817-826 __PACKAGE__->add_columns( Link Here
817
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
817
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
818
  "checkprevcheckout",
818
  "checkprevcheckout",
819
  {
819
  {
820
    data_type => "varchar",
820
    data_type => "enum",
821
    default_value => "inherit",
821
    default_value => "inherit",
822
    extra => { list => ["yes", "no", "inherit"] },
822
    is_nullable => 0,
823
    is_nullable => 0,
823
    size => 7,
824
  },
824
  },
825
  "updated_on",
825
  "updated_on",
826
  {
826
  {
Lines 857-864 __PACKAGE__->add_columns( Link Here
857
);
857
);
858
858
859
859
860
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-04-28 16:41:47
860
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-07-10 07:11:31
861
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5QA+/eORyEKhkG++0f3Hvw
861
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vAkNNQagJcYfZ0/6mDOw8g
862
862
863
__PACKAGE__->add_columns(
863
__PACKAGE__->add_columns(
864
    '+anonymized'                  => { is_boolean => 1 },
864
    '+anonymized'                  => { is_boolean => 1 },
865
- 

Return to bug 40337