|
Lines 186-201
__PACKAGE__->set_primary_key("import_record_id");
Link Here
|
| 186 |
|
186 |
|
| 187 |
=head1 RELATIONS |
187 |
=head1 RELATIONS |
| 188 |
|
188 |
|
| 189 |
=head2 import_auths |
189 |
=head2 import_auth |
| 190 |
|
190 |
|
| 191 |
Type: has_many |
191 |
Type: might_have |
| 192 |
|
192 |
|
| 193 |
Related object: L<Koha::Schema::Result::ImportAuth> |
193 |
Related object: L<Koha::Schema::Result::ImportAuth> |
| 194 |
|
194 |
|
| 195 |
=cut |
195 |
=cut |
| 196 |
|
196 |
|
| 197 |
__PACKAGE__->has_many( |
197 |
__PACKAGE__->might_have( |
| 198 |
"import_auths", |
198 |
"import_auth", |
| 199 |
"Koha::Schema::Result::ImportAuth", |
199 |
"Koha::Schema::Result::ImportAuth", |
| 200 |
{ "foreign.import_record_id" => "self.import_record_id" }, |
200 |
{ "foreign.import_record_id" => "self.import_record_id" }, |
| 201 |
{ cascade_copy => 0, cascade_delete => 0 }, |
201 |
{ cascade_copy => 0, cascade_delete => 0 }, |
|
Lines 262-269
__PACKAGE__->has_many(
Link Here
|
| 262 |
); |
262 |
); |
| 263 |
|
263 |
|
| 264 |
|
264 |
|
| 265 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-17 11:17:50 |
265 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-16 15:15:01 |
| 266 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:bGhtHdQ7/pXWWezcgz/4EA |
266 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CAOcvre3AiNqGbeblkzQpw |
| 267 |
|
267 |
|
| 268 |
sub koha_object_class { |
268 |
sub koha_object_class { |
| 269 |
'Koha::Import::Record'; |
269 |
'Koha::Import::Record'; |
| 270 |
- |
|
|