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 |
=head2 koha_object_class |
454 |
=head2 koha_object_class |
429 |
|
455 |
|
430 |
Missing POD for koha_object_class. |
456 |
Missing POD for koha_object_class. |
431 |
- |
|
|