|
Lines 216-231
__PACKAGE__->belongs_to(
Link Here
|
| 216 |
{ is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, |
216 |
{ is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, |
| 217 |
); |
217 |
); |
| 218 |
|
218 |
|
| 219 |
=head2 import_biblios |
219 |
=head2 import_biblio |
| 220 |
|
220 |
|
| 221 |
Type: has_many |
221 |
Type: might_have |
| 222 |
|
222 |
|
| 223 |
Related object: L<Koha::Schema::Result::ImportBiblio> |
223 |
Related object: L<Koha::Schema::Result::ImportBiblio> |
| 224 |
|
224 |
|
| 225 |
=cut |
225 |
=cut |
| 226 |
|
226 |
|
| 227 |
__PACKAGE__->has_many( |
227 |
__PACKAGE__->might_have( |
| 228 |
"import_biblios", |
228 |
"import_biblio", |
| 229 |
"Koha::Schema::Result::ImportBiblio", |
229 |
"Koha::Schema::Result::ImportBiblio", |
| 230 |
{ "foreign.import_record_id" => "self.import_record_id" }, |
230 |
{ "foreign.import_record_id" => "self.import_record_id" }, |
| 231 |
{ cascade_copy => 0, cascade_delete => 0 }, |
231 |
{ 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.07046 @ 2019-04-18 10:50:48 |
265 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-09-15 12:20:57 |
| 266 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:bqIAQzhgioWtBWU8zFdtjw |
266 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PXoyWIwcg9aOQ0223ogwxw |
| 267 |
|
267 |
|
| 268 |
sub koha_object_class { |
268 |
sub koha_object_class { |
| 269 |
'Koha::Import::Record'; |
269 |
'Koha::Import::Record'; |
| 270 |
- |
|
|