From 09fe7ed351415f98edbe693d19ff1f35a5f29361 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Thu, 22 Oct 2015 11:11:49 -0300 Subject: [PATCH] Bug 10937: (RM followup) DBIx update Signed-off-by: Tomas Cohen Arazi --- Koha/Schema/Result/Itemtype.pm | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Itemtype.pm b/Koha/Schema/Result/Itemtype.pm index 1ed6b3b4d6..0be9faf9e1 100644 --- a/Koha/Schema/Result/Itemtype.pm +++ b/Koha/Schema/Result/Itemtype.pm @@ -76,6 +76,18 @@ __PACKAGE__->table("itemtypes"); is_nullable: 1 size: 3 +=head2 hideinopac + + data_type: 'tinyint' + default_value: 0 + is_nullable: 0 + +=head2 searchcategory + + data_type: 'varchar' + is_nullable: 1 + size: 80 + =cut __PACKAGE__->add_columns( @@ -102,6 +114,10 @@ __PACKAGE__->add_columns( }, "sip_media_type", { data_type => "varchar", is_nullable => 1, size => 3 }, + "hideinopac", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "searchcategory", + { data_type => "varchar", is_nullable => 1, size => 80 }, ); =head1 PRIMARY KEY @@ -149,8 +165,8 @@ __PACKAGE__->might_have( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2014-04-28 18:01:17 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:urVYwhpfBgknZLIhjkqhnw +# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-10-22 11:11:19 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:nknZ3AB923k+tEw7whtzQA # You can replace this text with custom content, and it will be preserved on regeneration -- 2.39.2