|
Lines 205-210
set required password strength for patrons in this category
Link Here
|
| 205 |
|
205 |
|
| 206 |
Exclude patrons of this category from local holds priority |
206 |
Exclude patrons of this category from local holds priority |
| 207 |
|
207 |
|
|
|
208 |
=head2 reserves_max_pickup_delay |
| 209 |
|
| 210 |
data_type: 'smallint' |
| 211 |
is_nullable: 1 |
| 212 |
|
| 213 |
override ReservesMaxPickUpDelay for this patron category |
| 214 |
|
| 208 |
=cut |
215 |
=cut |
| 209 |
|
216 |
|
| 210 |
__PACKAGE__->add_columns( |
217 |
__PACKAGE__->add_columns( |
|
Lines 271-276
__PACKAGE__->add_columns(
Link Here
|
| 271 |
{ data_type => "tinyint", is_nullable => 1 }, |
278 |
{ data_type => "tinyint", is_nullable => 1 }, |
| 272 |
"exclude_from_local_holds_priority", |
279 |
"exclude_from_local_holds_priority", |
| 273 |
{ data_type => "tinyint", is_nullable => 1 }, |
280 |
{ data_type => "tinyint", is_nullable => 1 }, |
|
|
281 |
"reserves_max_pickup_delay", |
| 282 |
{ data_type => "smallint", is_nullable => 1 }, |
| 274 |
); |
283 |
); |
| 275 |
|
284 |
|
| 276 |
=head1 PRIMARY KEY |
285 |
=head1 PRIMARY KEY |
|
Lines 363-370
__PACKAGE__->has_many(
Link Here
|
| 363 |
); |
372 |
); |
| 364 |
|
373 |
|
| 365 |
|
374 |
|
| 366 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-06-23 16:29:27 |
375 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-08-31 12:15:05 |
| 367 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:SKWF2QpqQtXoujwurKFQhA |
376 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GUjG1ECqZ6Hqd+wAjtozYg |
| 368 |
|
377 |
|
| 369 |
sub koha_object_class { |
378 |
sub koha_object_class { |
| 370 |
'Koha::Patron::Category'; |
379 |
'Koha::Patron::Category'; |
| 371 |
- |
|
|