Lines 213-218
set required password strength for patrons in this category
Link Here
|
213 |
|
213 |
|
214 |
Exclude patrons of this category from local holds priority |
214 |
Exclude patrons of this category from local holds priority |
215 |
|
215 |
|
|
|
216 |
=head2 noissuescharge |
217 |
|
218 |
data_type: 'integer' |
219 |
is_nullable: 1 |
220 |
|
221 |
define maximum amount withstanding before checkouts are blocked |
222 |
|
223 |
=head2 noissueschargeguarantees |
224 |
|
225 |
data_type: 'integer' |
226 |
is_nullable: 1 |
227 |
|
228 |
define maximum amount withstanding before checkouts are blocked |
229 |
|
230 |
=head2 noissueschargeguarantorswithguarantees |
231 |
|
232 |
data_type: 'integer' |
233 |
is_nullable: 1 |
234 |
|
235 |
define maximum amount withstanding before checkouts are blocked |
236 |
|
216 |
=cut |
237 |
=cut |
217 |
|
238 |
|
218 |
__PACKAGE__->add_columns( |
239 |
__PACKAGE__->add_columns( |
Lines 281-286
__PACKAGE__->add_columns(
Link Here
|
281 |
{ data_type => "tinyint", is_nullable => 1 }, |
302 |
{ data_type => "tinyint", is_nullable => 1 }, |
282 |
"exclude_from_local_holds_priority", |
303 |
"exclude_from_local_holds_priority", |
283 |
{ data_type => "tinyint", is_nullable => 1 }, |
304 |
{ data_type => "tinyint", is_nullable => 1 }, |
|
|
305 |
"noissuescharge", |
306 |
{ data_type => "integer", is_nullable => 1 }, |
307 |
"noissueschargeguarantees", |
308 |
{ data_type => "integer", is_nullable => 1 }, |
309 |
"noissueschargeguarantorswithguarantees", |
310 |
{ data_type => "integer", is_nullable => 1 }, |
284 |
); |
311 |
); |
285 |
|
312 |
|
286 |
=head1 PRIMARY KEY |
313 |
=head1 PRIMARY KEY |
287 |
- |
|
|