From 24aa0039c54b5f10bdff65feb69bebd17189d1dd Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Thu, 23 Apr 2015 12:42:50 -0300 Subject: [PATCH] Bug 13023: (RM followup) DBIx updates Signed-off-by: Tomas Cohen Arazi --- Koha/Schema/Result/Deleteditem.pm | 11 +++++++++-- Koha/Schema/Result/Item.pm | 11 +++++++++-- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/Koha/Schema/Result/Deleteditem.pm b/Koha/Schema/Result/Deleteditem.pm index f915511..63ca492 100644 --- a/Koha/Schema/Result/Deleteditem.pm +++ b/Koha/Schema/Result/Deleteditem.pm @@ -172,6 +172,11 @@ __PACKAGE__->table("deleteditems"); data_type: 'mediumtext' is_nullable: 1 +=head2 itemnotes_nonpublic + + data_type: 'mediumtext' + is_nullable: 1 + =head2 holdingbranch data_type: 'varchar' @@ -328,6 +333,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", is_nullable => 1 }, "itemnotes", { data_type => "mediumtext", is_nullable => 1 }, + "itemnotes_nonpublic", + { data_type => "mediumtext", is_nullable => 1 }, "holdingbranch", { data_type => "varchar", is_nullable => 1, size => 10 }, "paidfor", @@ -380,8 +387,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("itemnumber"); -# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-10-24 09:58:16 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Ru5DyaIlWJcMNAgpZRjOLg +# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-23 12:42:12 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+aDMnEj1EvLQTQPAEl1ocg # You can replace this text with custom content, and it will be preserved on regeneration diff --git a/Koha/Schema/Result/Item.pm b/Koha/Schema/Result/Item.pm index f883659..0650c4f 100644 --- a/Koha/Schema/Result/Item.pm +++ b/Koha/Schema/Result/Item.pm @@ -174,6 +174,11 @@ __PACKAGE__->table("items"); data_type: 'mediumtext' is_nullable: 1 +=head2 itemnotes_nonpublic + + data_type: 'mediumtext' + is_nullable: 1 + =head2 holdingbranch data_type: 'varchar' @@ -336,6 +341,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", is_nullable => 1 }, "itemnotes", { data_type => "mediumtext", is_nullable => 1 }, + "itemnotes_nonpublic", + { data_type => "mediumtext", is_nullable => 1 }, "holdingbranch", { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 }, "paidfor", @@ -609,8 +616,8 @@ __PACKAGE__->might_have( ); -# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-10-24 09:58:16 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:2slVK/FjcRDiYLeufoOFQQ +# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-23 12:42:12 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:urSpNt7LBda4T5Plhi6cPw sub effective_itemtype { my ( $self ) = @_; -- 2.3.6