@@ -, +, @@ --- Koha/Schema/Result/Itemtype.pm | 8 ++++++++ 1 file changed, 8 insertions(+) --- a/Koha/Schema/Result/Itemtype.pm +++ a/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 }, ); --