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

(-)a/Koha/Schema/Result/Category.pm (-3 / +13 lines)
Lines 222-227 define maximum amount that the guarantees of a patron in this category can have Link Here
222
222
223
define maximum amount that the guarantors with guarantees of a patron in this category can have outstanding before checkouts are blocked
223
define maximum amount that the guarantors with guarantees of a patron in this category can have outstanding before checkouts are blocked
224
224
225
=head2 enforce_expiry_notice
226
227
  data_type: 'tinyint'
228
  default_value: 0
229
  is_nullable: 0
230
231
enforce the patron expiry notice for this category
232
225
=cut
233
=cut
226
234
227
__PACKAGE__->add_columns(
235
__PACKAGE__->add_columns(
Lines 293-298 __PACKAGE__->add_columns( Link Here
293
  { data_type => "integer", is_nullable => 1 },
301
  { data_type => "integer", is_nullable => 1 },
294
  "noissueschargeguarantorswithguarantees",
302
  "noissueschargeguarantorswithguarantees",
295
  { data_type => "integer", is_nullable => 1 },
303
  { data_type => "integer", is_nullable => 1 },
304
  "enforce_expiry_notice",
305
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
296
);
306
);
297
307
298
=head1 PRIMARY KEY
308
=head1 PRIMARY KEY
Lines 400-407 __PACKAGE__->has_many( Link Here
400
);
410
);
401
411
402
412
403
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-11-08 11:06:25
413
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-12-03 15:46:23
404
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:f8BSmD9RKHL/QAvHuuLIyw
414
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jiQq3bW+ZfdYpUpfZq1Rzw
405
415
406
# 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
407
417
Lines 419-424 __PACKAGE__->add_columns( Link Here
419
    '+exclude_from_local_holds_priority'      => { is_boolean => 1 },
429
    '+exclude_from_local_holds_priority'      => { is_boolean => 1 },
420
    '+require_strong_password'                => { is_boolean => 1 },
430
    '+require_strong_password'                => { is_boolean => 1 },
421
    '+force_password_reset_when_set_by_staff' => { is_boolean => 1 },
431
    '+force_password_reset_when_set_by_staff' => { is_boolean => 1 },
432
    '+enforce_expiry_notice' => { is_boolean => 1 },
422
);
433
);
423
434
424
1;
435
1;
425
- 

Return to bug 30301