From f523d9e4ac63d8bcc9dbd9010e9d253c7bdb3fc3 Mon Sep 17 00:00:00 2001 From: Alex Buckley Date: Tue, 15 Mar 2022 04:28:32 +0000 Subject: [PATCH] Bug 25560: Updated schema file Sponsored-By: Waikato Institute of Technology, NZ --- Koha/Schema/Result/Itemtype.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Itemtype.pm b/Koha/Schema/Result/Itemtype.pm index 1e14063e1d..db8b6f37c6 100644 --- a/Koha/Schema/Result/Itemtype.pm +++ b/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 }, -- 2.20.1