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

(-)a/Koha/Schema/Result/Category.pm (-3 / +11 lines)
Lines 215-220 define maximum amount that the guarantees of a patron in this category can have Link Here
215
215
216
define maximum amount that the guarantors with guarantees of a patron in this category can have outstanding before checkouts are blocked
216
define maximum amount that the guarantors with guarantees of a patron in this category can have outstanding before checkouts are blocked
217
217
218
=head2 force_password_reset_when_set_by_staff
219
220
  data_type: 'tinyint'
221
  is_nullable: 1
222
223
if patrons of this category are required to reset password after being created by a staff member
224
218
=cut
225
=cut
219
226
220
__PACKAGE__->add_columns(
227
__PACKAGE__->add_columns(
Lines 284-289 __PACKAGE__->add_columns( Link Here
284
  { data_type => "integer", is_nullable => 1 },
291
  { data_type => "integer", is_nullable => 1 },
285
  "noissueschargeguarantorswithguarantees",
292
  "noissueschargeguarantorswithguarantees",
286
  { data_type => "integer", is_nullable => 1 },
293
  { data_type => "integer", is_nullable => 1 },
294
  "force_password_reset_when_set_by_staff",
295
  { data_type => "tinyint", is_nullable => 1 },
287
);
296
);
288
297
289
=head1 PRIMARY KEY
298
=head1 PRIMARY KEY
Lines 391-398 __PACKAGE__->has_many( Link Here
391
);
400
);
392
401
393
402
394
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-07-19 12:29:41
403
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-09-17 17:34:19
395
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WC8+n0x/UB9kDO1ZAVTo/A
404
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:SZoU95HraPfIzszljOSHyQ
396
405
397
406
398
# You can replace this text with custom code or comments, and it will be preserved on regeneration
407
# You can replace this text with custom code or comments, and it will be preserved on regeneration
399
- 

Return to bug 33462