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

(-)a/Koha/Schema/Result/Issue.pm (-1 / +15 lines)
Lines 373-378 __PACKAGE__->belongs_to( Link Here
373
  },
373
  },
374
);
374
);
375
375
376
=head2 renewals
377
378
Type: has_many
379
380
Related object: L<Koha::Schema::Result::CheckoutRenewal>
381
382
=cut
383
384
__PACKAGE__->has_many(
385
    "renewals",
386
    "Koha::Schema::Result::CheckoutRenewal",
387
    { "foreign.issue_id" => "self.issue_id" },
388
    { cascade_copy       => 0, cascade_delete => 0 },
389
);
390
376
=head2 return_claim
391
=head2 return_claim
377
392
378
Type: might_have
393
Type: might_have
379
- 

Return to bug 30275