Lines 192-197
Exclude patrons of this category from local holds priority
Link Here
|
192 |
|
192 |
|
193 |
=cut |
193 |
=cut |
194 |
|
194 |
|
|
|
195 |
=head2 article_request_limit |
196 |
|
197 |
data_type: 'tinyint' |
198 |
is_nullable: 1 |
199 |
|
200 |
Limit article scan requests per day |
201 |
|
202 |
=cut |
203 |
|
195 |
__PACKAGE__->add_columns( |
204 |
__PACKAGE__->add_columns( |
196 |
"categorycode", |
205 |
"categorycode", |
197 |
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 10 }, |
206 |
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 10 }, |
Lines 252-257
__PACKAGE__->add_columns(
Link Here
|
252 |
{ data_type => "tinyint", is_nullable => 1 }, |
261 |
{ data_type => "tinyint", is_nullable => 1 }, |
253 |
"exclude_from_local_holds_priority", |
262 |
"exclude_from_local_holds_priority", |
254 |
{ data_type => "tinyint", is_nullable => 1 }, |
263 |
{ data_type => "tinyint", is_nullable => 1 }, |
|
|
264 |
"article_request_limit", |
265 |
{ data_type => "tinyint", is_nullable => 1 }, |
255 |
); |
266 |
); |
256 |
|
267 |
|
257 |
=head1 PRIMARY KEY |
268 |
=head1 PRIMARY KEY |
258 |
- |
|
|