From 090e657434492b270f80f34c693481396c2b3be7 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 23 Apr 2015 13:56:55 -0400 Subject: [PATCH] Bug 9303 [QA Followup] - Restore missing biblio relationship Signed-off-by: Nick Clemens --- Koha/Schema/Result/Item.pm | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/Koha/Schema/Result/Item.pm b/Koha/Schema/Result/Item.pm index 08031b2..a5516d4 100644 --- a/Koha/Schema/Result/Item.pm +++ b/Koha/Schema/Result/Item.pm @@ -619,6 +619,13 @@ __PACKAGE__->might_have( # Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-11-04 12:00:58 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jkgJfulDrGaUpQ6jC40vpQ +__PACKAGE__->belongs_to( + "biblio", + "Koha::Schema::Result::Biblio", + { biblionumber => "biblionumber" }, + { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, +); + sub effective_itemtype { my ( $self ) = @_; -- 1.7.2.5