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 241-246 __PACKAGE__->add_columns( Link Here
241
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
247
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
242
  "reservesallowed",
248
  "reservesallowed",
243
  { data_type => "smallint", default_value => 0, is_nullable => 0 },
249
  { data_type => "smallint", default_value => 0, is_nullable => 0 },
250
  "holds_per_record",
251
  { data_type => "smallint", default_value => 1, is_nullable => 0 },
244
  "branchcode",
252
  "branchcode",
245
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
253
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
246
  "overduefinescap",
254
  "overduefinescap",
Lines 268-275 __PACKAGE__->add_columns( Link Here
268
__PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype");
276
__PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype");
269
277
270
278
271
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-10-22 14:50:45
279
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-12-28 16:26:37
272
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jTYQaXLtBrSIGEqpFlgIfg
280
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/3xm7W/T/nWlYVlokMTgjQ
273
281
274
282
275
# You can replace this text with custom content, and it will be preserved on regeneration
283
# You can replace this text with custom content, and it will be preserved on regeneration
276
- 

Return to bug 14695