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

(-)a/Koha/Schema/Result/Biblio.pm (-2 / +17 lines)
Lines 315-320 __PACKAGE__->has_many( Link Here
315
  { cascade_copy => 0, cascade_delete => 0 },
315
  { cascade_copy => 0, cascade_delete => 0 },
316
);
316
);
317
317
318
=head2 item_groups
319
320
Type: has_many
321
322
Related object: L<Koha::Schema::Result::ItemGroup>
323
324
=cut
325
326
__PACKAGE__->has_many(
327
  "item_groups",
328
  "Koha::Schema::Result::ItemGroup",
329
  { "foreign.biblio_id" => "self.biblionumber" },
330
  { cascade_copy => 0, cascade_delete => 0 },
331
);
332
318
=head2 items
333
=head2 items
319
334
320
Type: has_many
335
Type: has_many
Lines 541-548 __PACKAGE__->has_many( Link Here
541
);
556
);
542
557
543
558
544
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2022-03-28 22:07:59
559
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-06-02 16:18:20
545
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:sh8waM4ivuiNao0VV5403Q
560
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:UX7bRTwMVUX3lzXDQ//vJg
546
561
547
__PACKAGE__->has_many(
562
__PACKAGE__->has_many(
548
  "biblioitem",
563
  "biblioitem",
(-)a/Koha/Schema/Result/Item.pm (-3 / +17 lines)
Lines 729-734 __PACKAGE__->might_have( Link Here
729
  { cascade_copy => 0, cascade_delete => 0 },
729
  { cascade_copy => 0, cascade_delete => 0 },
730
);
730
);
731
731
732
=head2 item_group_item
733
734
Type: might_have
735
736
Related object: L<Koha::Schema::Result::ItemGroupItem>
737
738
=cut
739
740
__PACKAGE__->might_have(
741
  "item_group_item",
742
  "Koha::Schema::Result::ItemGroupItem",
743
  { "foreign.item_id" => "self.itemnumber" },
744
  { cascade_copy => 0, cascade_delete => 0 },
745
);
746
732
=head2 items_last_borrower
747
=head2 items_last_borrower
733
748
734
Type: might_have
749
Type: might_have
Lines 880-887 __PACKAGE__->has_many( Link Here
880
);
895
);
881
896
882
897
883
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2022-03-28 22:07:59
898
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-06-02 16:18:20
884
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:28f9/7z3Nq5C4qzBMyceiQ
899
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:92i001BWaQoVRbuG+NhIBw
885
900
886
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
901
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
887
902
888
- 

Return to bug 24857