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

(-)a/Koha/Schema/Result/Issuingrule.pm (-3 / +9 lines)
Lines 153-158 __PACKAGE__->table("issuingrules"); Link Here
153
  default_value: 0
153
  default_value: 0
154
  is_nullable: 1
154
  is_nullable: 1
155
155
156
=head2 no_auto_renewal_after
157
158
  data_type: 'integer'
159
  is_nullable: 1
160
156
=head2 reservesallowed
161
=head2 reservesallowed
157
162
158
  data_type: 'smallint'
163
  data_type: 'smallint'
Lines 245-250 __PACKAGE__->add_columns( Link Here
245
  { data_type => "integer", is_nullable => 1 },
250
  { data_type => "integer", is_nullable => 1 },
246
  "auto_renew",
251
  "auto_renew",
247
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
252
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
253
  "no_auto_renewal_after",
254
  { data_type => "integer", is_nullable => 1 },
248
  "reservesallowed",
255
  "reservesallowed",
249
  { data_type => "smallint", default_value => 0, is_nullable => 0 },
256
  { data_type => "smallint", default_value => 0, is_nullable => 0 },
250
  "branchcode",
257
  "branchcode",
Lines 276-283 __PACKAGE__->add_columns( Link Here
276
__PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype");
283
__PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype");
277
284
278
285
279
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-12-31 15:26:16
286
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-01-15 11:51:25
280
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:K/8SKpDjba5CM4+WPZtWPw
287
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:IluzURuro4z+ZaH0jfjH5Q
281
288
282
289
283
# You can replace this text with custom content, and it will be preserved on regeneration
290
# You can replace this text with custom content, and it will be preserved on regeneration
284
- 

Return to bug 15581