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

(-)a/Koha/Schema/Result/Issuingrule.pm (-11 lines)
Lines 215-228 __PACKAGE__->table("issuingrules"); Link Here
215
  extra: {list => ["no","yes","bib_only","item_only"]}
215
  extra: {list => ["no","yes","bib_only","item_only"]}
216
  is_nullable: 0
216
  is_nullable: 0
217
217
218
<<<<<<< HEAD
219
=======
220
=head2 note
221
222
  data_type: 'varchar'
223
  is_nullable: 1
224
  size: 100
225
226
=head2 recall_due_date_interval
218
=head2 recall_due_date_interval
227
219
228
  data_type: 'integer'
220
  data_type: 'integer'
Lines 318-325 __PACKAGE__->add_columns( Link Here
318
    extra => { list => ["no", "yes", "bib_only", "item_only"] },
310
    extra => { list => ["no", "yes", "bib_only", "item_only"] },
319
    is_nullable => 0,
311
    is_nullable => 0,
320
  },
312
  },
321
  "note",
322
  { data_type => "varchar", is_nullable => 1, size => 100 },
323
  "recall_due_date_interval",
313
  "recall_due_date_interval",
324
  { data_type => "integer", is_nullable => 1 },
314
  { data_type => "integer", is_nullable => 1 },
325
  "recall_overdue_fine",
315
  "recall_overdue_fine",
326
- 

Return to bug 19532