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

(-)a/Koha/Schema/Result/Issue.pm (-1 / +26 lines)
Lines 425-430 __PACKAGE__->has_many( Link Here
425
    { cascade_copy       => 0, cascade_delete => 0 },
425
    { cascade_copy       => 0, cascade_delete => 0 },
426
);
426
);
427
427
428
=head2 quota_usages
429
430
Type: has_many
431
432
Related object: L<Koha::Schema::Result::PatronQuotaUsage>
433
434
=cut
435
436
__PACKAGE__->has_many(
437
    'quota_usages' => 'MyApp::Schema::Result::PatronQuotaUsage',
438
    'issue_id'
439
);
440
441
=head2 quotas
442
443
Type: many_to_many
444
445
Related object: L<Koha::Schema::Result::PatronQuota>
446
447
=cut
448
449
__PACKAGE__->many_to_many(
450
    'patron_quotas' => 'patron_quota_usages',
451
    'patron_quota'
452
);
453
428
sub koha_object_class {
454
sub koha_object_class {
429
    'Koha::Checkout';
455
    'Koha::Checkout';
430
}
456
}
431
- 

Return to bug 38924