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

(-)a/Koha/Schema/Result/Category.pm (-1 / +11 lines)
Lines 200-205 Cost for article scan request Link Here
200
200
201
=cut
201
=cut
202
202
203
=head2 article_request_limit
204
205
  data_type: 'tinyint'
206
  is_nullable: 1
207
208
Limit article scan requests per day
209
210
=cut
211
203
__PACKAGE__->add_columns(
212
__PACKAGE__->add_columns(
204
  "categorycode",
213
  "categorycode",
205
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
214
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
Lines 262-267 __PACKAGE__->add_columns( Link Here
262
  { data_type => "tinyint", is_nullable => 1 },
271
  { data_type => "tinyint", is_nullable => 1 },
263
  "article_request_fee",
272
  "article_request_fee",
264
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
273
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
274
  "article_request_limit",
275
  { data_type => "tinyint", is_nullable => 1 },
265
);
276
);
266
277
267
=head1 PRIMARY KEY
278
=head1 PRIMARY KEY
268
- 

Return to bug 27945