@@ -, +, @@ --- Koha/Schema/Result/Itemtype.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) --- a/Koha/Schema/Result/Itemtype.pm +++ a/Koha/Schema/Result/Itemtype.pm @@ -159,6 +159,12 @@ SIP2 protocol media type for this itemtype Hide the item type from the search options in OPAC +=head2 updatenotforloan + + data_type: 'tinyint' + default_value: 1 + is_nullable: 0 + =head2 searchcategory data_type: 'varchar' @@ -217,6 +223,8 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 1, size => 3 }, "hideinopac", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "updatenotforloan", + { data_type => "tinyint", default_value => 1, is_nullable => 0 }, "searchcategory", { data_type => "varchar", is_nullable => 1, size => 80 }, "automatic_checkin", @@ -333,8 +341,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-04-22 09:12:04 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/kFAnQQ7q1KaLJ9h7vk0vg +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-03-15 04:27:16 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:w0Or8tfi3pk/DuUWOhkzrA __PACKAGE__->add_columns( '+rentalcharge_hourly_calendar' => { is_boolean => 1 }, --