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

(-)a/Koha/Schema/Result/Item.pm (-1 / +7 lines)
Lines 619-624 __PACKAGE__->might_have( Link Here
619
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-11-04 12:00:58
619
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-11-04 12:00:58
620
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jkgJfulDrGaUpQ6jC40vpQ
620
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jkgJfulDrGaUpQ6jC40vpQ
621
621
622
__PACKAGE__->belongs_to(
623
  "biblio",
624
  "Koha::Schema::Result::Biblio",
625
  { biblionumber => "biblionumber" },
626
  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
627
);
628
622
sub effective_itemtype {
629
sub effective_itemtype {
623
    my ( $self ) = @_;
630
    my ( $self ) = @_;
624
631
625
- 

Return to bug 9303