Lines 190-195
set required password strength for patrons in this category
Link Here
|
190 |
|
190 |
|
191 |
Exclude patrons of this category from local holds priority |
191 |
Exclude patrons of this category from local holds priority |
192 |
|
192 |
|
|
|
193 |
=head2 article_request_fee |
194 |
|
195 |
data_type: 'decimal' |
196 |
is_nullable: 1 |
197 |
size: [28,6] |
198 |
|
199 |
Cost for article scan request |
200 |
|
193 |
=cut |
201 |
=cut |
194 |
|
202 |
|
195 |
__PACKAGE__->add_columns( |
203 |
__PACKAGE__->add_columns( |
Lines 252-257
__PACKAGE__->add_columns(
Link Here
|
252 |
{ data_type => "tinyint", is_nullable => 1 }, |
260 |
{ data_type => "tinyint", is_nullable => 1 }, |
253 |
"exclude_from_local_holds_priority", |
261 |
"exclude_from_local_holds_priority", |
254 |
{ data_type => "tinyint", is_nullable => 1 }, |
262 |
{ data_type => "tinyint", is_nullable => 1 }, |
|
|
263 |
"article_request_fee", |
264 |
{ data_type => "decimal", is_nullable => 1, size => [28, 6] }, |
255 |
); |
265 |
); |
256 |
|
266 |
|
257 |
=head1 PRIMARY KEY |
267 |
=head1 PRIMARY KEY |
Lines 344-351
__PACKAGE__->has_many(
Link Here
|
344 |
); |
354 |
); |
345 |
|
355 |
|
346 |
|
356 |
|
347 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29 |
357 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-04-22 20:47:52 |
348 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:O4duiIu9dHKr31ToxFGubA |
358 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:S8G1yCMi9bYJXgM2KhffgQ |
349 |
|
359 |
|
350 |
__PACKAGE__->add_columns( |
360 |
__PACKAGE__->add_columns( |
351 |
'+exclude_from_local_holds_priority' => { is_boolean => 1 }, |
361 |
'+exclude_from_local_holds_priority' => { is_boolean => 1 }, |
352 |
- |
|
|