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

(-)a/Koha/Schema/Result/Issuingrule.pm (-3 / +10 lines)
Lines 159-164 __PACKAGE__->table("issuingrules"); Link Here
159
  default_value: 0
159
  default_value: 0
160
  is_nullable: 0
160
  is_nullable: 0
161
161
162
=head2 holds_per_record
163
164
  data_type: 'smallint'
165
  default_value: 1
166
  is_nullable: 0
167
162
=head2 branchcode
168
=head2 branchcode
163
169
164
  data_type: 'varchar'
170
  data_type: 'varchar'
Lines 247-252 __PACKAGE__->add_columns( Link Here
247
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
253
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
248
  "reservesallowed",
254
  "reservesallowed",
249
  { data_type => "smallint", default_value => 0, is_nullable => 0 },
255
  { data_type => "smallint", default_value => 0, is_nullable => 0 },
256
  "holds_per_record",
257
  { data_type => "smallint", default_value => 1, is_nullable => 0 },
250
  "branchcode",
258
  "branchcode",
251
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
259
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
252
  "overduefinescap",
260
  "overduefinescap",
Lines 276-283 __PACKAGE__->add_columns( Link Here
276
__PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype");
284
__PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype");
277
285
278
286
279
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-12-31 15:26:16
287
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-12-28 16:26:37
280
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:K/8SKpDjba5CM4+WPZtWPw
288
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/3xm7W/T/nWlYVlokMTgjQ
281
289
282
290
283
# You can replace this text with custom content, and it will be preserved on regeneration
291
# You can replace this text with custom content, and it will be preserved on regeneration
284
- 

Return to bug 14695