From 30af3272b59a7a71242daf6e4b707b08e9c5408f Mon Sep 17 00:00:00 2001 From: Alex Buckley Date: Fri, 22 May 2020 00:42:07 +0000 Subject: [PATCH] Bug 25560: Updated schema file Sponsored-By: Waikato Institute of Technology, NZ --- Koha/Schema/Result/Itemtype.pm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Koha/Schema/Result/Itemtype.pm b/Koha/Schema/Result/Itemtype.pm index 3a4c46ae1d9..cb3263df6eb 100644 --- a/Koha/Schema/Result/Itemtype.pm +++ b/Koha/Schema/Result/Itemtype.pm @@ -125,6 +125,12 @@ __PACKAGE__->table("itemtypes"); default_value: 0 is_nullable: 0 +=head2 updatenotforloanstatusoncheckin + + data_type: 'tinyint' + default_value: 1 + is_nullable: 0 + =head2 searchcategory data_type: 'varchar' @@ -173,6 +179,8 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 1, size => 3 }, "hideinopac", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "updatenotforloanstatusoncheckin", + { data_type => "tinyint", default_value => 1, is_nullable => 0 }, "searchcategory", { data_type => "varchar", is_nullable => 1, size => 80 }, ); -- 2.11.0