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

(-)a/Koha/Schema/Result/Item.pm (-3 / +17 lines)
Lines 599-604 __PACKAGE__->might_have( Link Here
599
  { cascade_copy => 0, cascade_delete => 0 },
599
  { cascade_copy => 0, cascade_delete => 0 },
600
);
600
);
601
601
602
=head2 item_messages
603
604
Type: has_many
605
606
Related object: L<Koha::Schema::Result::ItemMessage>
607
608
=cut
609
610
__PACKAGE__->has_many(
611
  "item_messages",
612
  "Koha::Schema::Result::ItemMessage",
613
  { "foreign.itemnumber" => "self.itemnumber" },
614
  { cascade_copy => 0, cascade_delete => 0 },
615
);
616
602
=head2 items_last_borrower
617
=head2 items_last_borrower
603
618
604
Type: might_have
619
Type: might_have
Lines 675-682 __PACKAGE__->might_have( Link Here
675
);
690
);
676
691
677
692
678
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-10-24 13:56:21
693
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-03-03 14:03:01
679
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Vf1sBZrpUo0Cvi896fjNuA
694
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:m7lTJnDxhx+N4NAq/C1OrA
680
695
681
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
696
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
682
697
683
- 

Return to bug 17361