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

(-)a/Koha/Schema/Result/Issuingrule.pm (-3 / +9 lines)
Lines 182-187 __PACKAGE__->table("issuingrules"); Link Here
182
  default_value: 1
182
  default_value: 1
183
  is_nullable: 0
183
  is_nullable: 0
184
184
185
=head2 holds_per_day
186
187
  data_type: 'smallint'
188
  is_nullable: 1
189
185
=head2 branchcode
190
=head2 branchcode
186
191
187
  data_type: 'varchar'
192
  data_type: 'varchar'
Lines 285-290 __PACKAGE__->add_columns( Link Here
285
  { data_type => "smallint", default_value => 0, is_nullable => 0 },
290
  { data_type => "smallint", default_value => 0, is_nullable => 0 },
286
  "holds_per_record",
291
  "holds_per_record",
287
  { data_type => "smallint", default_value => 1, is_nullable => 0 },
292
  { data_type => "smallint", default_value => 1, is_nullable => 0 },
293
  "holds_per_day",
294
  { data_type => "smallint", is_nullable => 1 },
288
  "branchcode",
295
  "branchcode",
289
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
296
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
290
  "overduefinescap",
297
  "overduefinescap",
Lines 321-328 __PACKAGE__->add_columns( Link Here
321
__PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype");
328
__PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype");
322
329
323
330
324
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-12-13 12:44:30
331
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-09-17 01:27:01
325
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:VBD8atc/D/6rN0D+aTaSOQ
332
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LC04yqfB1tXpaQxSrYbHtw
326
333
327
334
328
# You can replace this text with custom code or comments, and it will be preserved on regeneration
335
# You can replace this text with custom code or comments, and it will be preserved on regeneration
329
- 

Return to bug 15486