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 252-257 __PACKAGE__->add_columns( Link Here
252
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
258
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
253
  "no_auto_renewal_after",
259
  "no_auto_renewal_after",
254
  { data_type => "integer", is_nullable => 1 },
260
  { data_type => "integer", is_nullable => 1 },
261
  "no_auto_renewal_after_hard_limit",
262
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
255
  "reservesallowed",
263
  "reservesallowed",
256
  { data_type => "smallint", default_value => 0, is_nullable => 0 },
264
  { data_type => "smallint", default_value => 0, is_nullable => 0 },
257
  "branchcode",
265
  "branchcode",
Lines 283-290 __PACKAGE__->add_columns( Link Here
283
__PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype");
291
__PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype");
284
292
285
293
286
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-01-15 11:51:25
294
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-04-25 21:10:41
287
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:IluzURuro4z+ZaH0jfjH5Q
295
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:O8WVwjJo4SL7RR7UkkaCyw
288
296
289
297
290
# You can replace this text with custom content, and it will be preserved on regeneration
298
# You can replace this text with custom content, and it will be preserved on regeneration
291
- 

Return to bug 16344