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

(-)a/Koha/Schema/Result/Issue.pm (-3 / +22 lines)
Lines 455-466 __PACKAGE__->has_many( Link Here
455
    { cascade_copy       => 0, cascade_delete => 0 },
455
    { cascade_copy       => 0, cascade_delete => 0 },
456
);
456
);
457
457
458
=head2 koha_object_class
458
=head2 quota_usages
459
459
460
Missing POD for koha_object_class.
460
Type: has_many
461
462
Related object: L<Koha::Schema::Result::PatronQuotaUsage>
463
464
=cut
465
466
__PACKAGE__->has_many(
467
    'quota_usages' => 'MyApp::Schema::Result::PatronQuotaUsage',
468
    'issue_id'
469
);
470
471
=head2 quotas
472
473
Type: many_to_many
474
475
Related object: L<Koha::Schema::Result::PatronQuota>
461
476
462
=cut
477
=cut
463
478
479
__PACKAGE__->many_to_many(
480
    'patron_quotas' => 'patron_quota_usages',
481
    'patron_quota'
482
);
483
464
sub koha_object_class {
484
sub koha_object_class {
465
    'Koha::Checkout';
485
    'Koha::Checkout';
466
}
486
}
467
- 

Return to bug 38924