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

(-)a/Koha/Schema/Result/Issuingrule.pm (-3 / +9 lines)
Lines 176-181 __PACKAGE__->table("issuingrules"); Link Here
176
  default_value: 1
176
  default_value: 1
177
  is_nullable: 0
177
  is_nullable: 0
178
178
179
=head2 holds_per_day
180
181
  data_type: 'smallint'
182
  is_nullable: 1
183
179
=head2 branchcode
184
=head2 branchcode
180
185
181
  data_type: 'varchar'
186
  data_type: 'varchar'
Lines 277-282 __PACKAGE__->add_columns( Link Here
277
  { data_type => "smallint", default_value => 0, is_nullable => 0 },
282
  { data_type => "smallint", default_value => 0, is_nullable => 0 },
278
  "holds_per_record",
283
  "holds_per_record",
279
  { data_type => "smallint", default_value => 1, is_nullable => 0 },
284
  { data_type => "smallint", default_value => 1, is_nullable => 0 },
285
  "holds_per_day",
286
  { data_type => "smallint", is_nullable => 1 },
280
  "branchcode",
287
  "branchcode",
281
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
288
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
282
  "overduefinescap",
289
  "overduefinescap",
Lines 313-320 __PACKAGE__->add_columns( Link Here
313
__PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype");
320
__PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype");
314
321
315
322
316
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-04-27 19:15:48
323
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-07-19 18:49:51
317
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:D1443VWPcoIXN3+lIkckIQ
324
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:XfAu8de30esCIK8aGsFq2w
318
325
319
326
320
# You can replace this text with custom code or comments, and it will be preserved on regeneration
327
# You can replace this text with custom code or comments, and it will be preserved on regeneration
321
- 

Return to bug 15486