@@ -, +, @@ --- Koha/Schema/Result/Itemtype.pm | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) --- a/Koha/Schema/Result/Itemtype.pm +++ a/Koha/Schema/Result/Itemtype.pm @@ -112,6 +112,18 @@ __PACKAGE__->table("itemtypes"); is_nullable: 1 size: 80 +=head2 can_suspend_hold + + data_type: 'tinyint' + default_value: 1 + is_nullable: 0 + +=head2 can_cancel_hold + + data_type: 'tinyint' + default_value: 1 + is_nullable: 0 + =cut __PACKAGE__->add_columns( @@ -150,6 +162,10 @@ __PACKAGE__->add_columns( { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "searchcategory", { data_type => "varchar", is_nullable => 1, size => 80 }, + "can_suspend_hold", + { data_type => "tinyint", default_value => 1, is_nullable => 0 }, + "can_cancel_hold", + { data_type => "tinyint", default_value => 1, is_nullable => 0 }, ); =head1 PRIMARY KEY @@ -227,8 +243,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07048 @ 2019-07-04 04:56:48 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Qo6jabJSQGeYJ542ebSJfg +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-12-10 13:05:13 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:imkleCMSxzQGqs6WXdLmjA # Use the ItemtypeLocalization view to create the join on localization our $LANGUAGE; --