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

(-)a/Koha/Schema/Result/Issue.pm (-1 / +1 lines)
Lines 434-440 Related object: L<Koha::Schema::Result::PatronQuotaUsage> Link Here
434
=cut
434
=cut
435
435
436
__PACKAGE__->has_many(
436
__PACKAGE__->has_many(
437
    'quota_usages' => 'MyApp::Schema::Result::PatronQuotaUsage',
437
    'quota_usages' => 'Koha::Schema::Result::PatronQuotaUsage',
438
    'issue_id'
438
    'issue_id'
439
);
439
);
440
440
(-)a/Koha/Schema/Result/PatronQuotaUsage.pm (-1 / +27 lines)
Lines 145-150 __PACKAGE__->belongs_to( Link Here
145
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-08-21 16:54:49
145
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-08-21 16:54:49
146
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:x+OvLQNInT0DkfPmiZwZzg
146
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:x+OvLQNInT0DkfPmiZwZzg
147
147
148
=head2 issue
149
150
Type: belongs_to
151
152
Related object: L<Koha::Schema::Result::Issue>
153
154
=cut
155
156
__PACKAGE__->belongs_to(
157
    issue => 'Koha::Schema::Result::Issue',
158
    'issue_id',
159
    { join_type => 'left' }
160
);
161
162
=head2 old_issue
163
164
Type: belongs_to
165
166
Related object: L<Koha::Schema::Result::OldIssue>
167
168
=cut
169
170
__PACKAGE__->belongs_to(
171
    old_issue => 'Koha::Schema::Result::OldIssue',
172
    'issue_id',
173
    { join_type => 'left' }
174
);
148
175
149
sub koha_object_class {
176
sub koha_object_class {
150
    return 'Koha::Patron::Quota::Usage';
177
    return 'Koha::Patron::Quota::Usage';
151
- 

Return to bug 38924