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

(-)a/Koha/Schema/Result/Issuingrule.pm (-3 / +10 lines)
Lines 158-163 __PACKAGE__->table("issuingrules"); Link Here
158
  data_type: 'integer'
158
  data_type: 'integer'
159
  is_nullable: 1
159
  is_nullable: 1
160
160
161
=head2 no_auto_renewal_after_hard_limit
162
163
  data_type: 'date'
164
  datetime_undef_if_invalid: 1
165
  is_nullable: 1
166
161
=head2 reservesallowed
167
=head2 reservesallowed
162
168
163
  data_type: 'smallint'
169
  data_type: 'smallint'
Lines 265-270 __PACKAGE__->add_columns( Link Here
265
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
271
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
266
  "no_auto_renewal_after",
272
  "no_auto_renewal_after",
267
  { data_type => "integer", is_nullable => 1 },
273
  { data_type => "integer", is_nullable => 1 },
274
  "no_auto_renewal_after_hard_limit",
275
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
268
  "reservesallowed",
276
  "reservesallowed",
269
  { data_type => "smallint", default_value => 0, is_nullable => 0 },
277
  { data_type => "smallint", default_value => 0, is_nullable => 0 },
270
  "holds_per_record",
278
  "holds_per_record",
Lines 305-312 __PACKAGE__->add_columns( Link Here
305
__PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype");
313
__PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype");
306
314
307
315
308
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-11-02 10:33:37
316
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-10-30 18:41:47
309
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:t9AhZLbm4SE7mx25LAyhGA
317
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hhWg+HJ8brj2n9vR8cfRrw
310
318
311
319
312
# You can replace this text with custom code or comments, and it will be preserved on regeneration
320
# You can replace this text with custom code or comments, and it will be preserved on regeneration
313
- 

Return to bug 16344