|
Lines 145-150
__PACKAGE__->belongs_to(
Link Here
|
| 145 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-11-06 17:47:10 |
145 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-11-06 17:47:10 |
| 146 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hxeHkoIaFwVoiLReL04/4A |
146 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hxeHkoIaFwVoiLReL04/4A |
| 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 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
176 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
| 150 |
1; |
177 |
1; |
| 151 |
- |
|
|