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

(-)a/Koha/Schema/Result/Issuingrule.pm (-3 / +10 lines)
Lines 70-75 __PACKAGE__->table("issuingrules"); Link Here
70
  data_type: 'integer'
70
  data_type: 'integer'
71
  is_nullable: 1
71
  is_nullable: 1
72
72
73
=head2 suspension_chargeperiod
74
75
  data_type: 'integer'
76
  default_value: 1
77
  is_nullable: 1
78
73
=head2 firstremind
79
=head2 firstremind
74
80
75
  data_type: 'integer'
81
  data_type: 'integer'
Lines 234-239 __PACKAGE__->add_columns( Link Here
234
  { data_type => "integer", is_nullable => 1 },
240
  { data_type => "integer", is_nullable => 1 },
235
  "maxsuspensiondays",
241
  "maxsuspensiondays",
236
  { data_type => "integer", is_nullable => 1 },
242
  { data_type => "integer", is_nullable => 1 },
243
  "suspension_chargeperiod",
244
  { data_type => "integer", default_value => 1, is_nullable => 1 },
237
  "firstremind",
245
  "firstremind",
238
  { data_type => "integer", is_nullable => 1 },
246
  { data_type => "integer", is_nullable => 1 },
239
  "chargeperiod",
247
  "chargeperiod",
Lines 313-320 __PACKAGE__->add_columns( Link Here
313
__PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype");
321
__PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype");
314
322
315
323
316
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-04-27 19:15:48
324
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-12-13 12:44:30
317
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:D1443VWPcoIXN3+lIkckIQ
325
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:VBD8atc/D/6rN0D+aTaSOQ
318
326
319
327
320
# You can replace this text with custom code or comments, and it will be preserved on regeneration
328
# You can replace this text with custom code or comments, and it will be preserved on regeneration
321
- 

Return to bug 19804