@@ -, +, @@ --- Koha/Schema/Result/Itemtype.pm | 6 ++++++ 1 file changed, 6 insertions(+) --- a/Koha/Schema/Result/Itemtype.pm +++ a/Koha/Schema/Result/Itemtype.pm @@ -246,6 +246,12 @@ __PACKAGE__->has_many( # Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-12-10 13:05:13 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:imkleCMSxzQGqs6WXdLmjA +__PACKAGE__->add_columns( + '+hideinopac' => { is_boolean => 1 }, + '+can_suspend_hold' => { is_boolean => 1 }, + '+can_cancel_hold' => { is_boolean => 1 }, +); + # Use the ItemtypeLocalization view to create the join on localization our $LANGUAGE; __PACKAGE__->has_many( --