From 9998659fd77f7f5ade9eb6f34d43e3f793989670 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 --- 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 0650c4f..079189a 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-04-23 12:42:12 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:urSpNt7LBda4T5Plhi6cPw +__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