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 258-263 __PACKAGE__->add_columns( Link Here
258
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
264
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
259
  "no_auto_renewal_after",
265
  "no_auto_renewal_after",
260
  { data_type => "integer", is_nullable => 1 },
266
  { data_type => "integer", is_nullable => 1 },
267
  "no_auto_renewal_after_hard_limit",
268
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
261
  "reservesallowed",
269
  "reservesallowed",
262
  { data_type => "smallint", default_value => 0, is_nullable => 0 },
270
  { data_type => "smallint", default_value => 0, is_nullable => 0 },
263
  "holds_per_record",
271
  "holds_per_record",
Lines 291-298 __PACKAGE__->add_columns( Link Here
291
__PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype");
299
__PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype");
292
300
293
301
294
# Created by DBIx::Class::Schema::Loader v0.07045 @ 2016-09-12 16:33:29
302
# Created by DBIx::Class::Schema::Loader v0.07045 @ 2016-10-18 09:44:48
295
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:RIVz3NaV1nthPZfOKXQgcA
303
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:bJd+wW9pNadB4FqextVrkw
296
304
297
305
298
# You can replace this text with custom code or comments, and it will be preserved on regeneration
306
# You can replace this text with custom code or comments, and it will be preserved on regeneration
299
- 

Return to bug 16344