@@ -, +, @@ --- Koha/Schema/Result/Issuingrule.pm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) --- a/Koha/Schema/Result/Issuingrule.pm +++ a/Koha/Schema/Result/Issuingrule.pm @@ -182,6 +182,11 @@ __PACKAGE__->table("issuingrules"); default_value: 1 is_nullable: 0 +=head2 holds_per_day + + data_type: 'smallint' + is_nullable: 1 + =head2 branchcode data_type: 'varchar' @@ -285,6 +290,8 @@ __PACKAGE__->add_columns( { data_type => "smallint", default_value => 0, is_nullable => 0 }, "holds_per_record", { data_type => "smallint", default_value => 1, is_nullable => 0 }, + "holds_per_day", + { data_type => "smallint", is_nullable => 1 }, "branchcode", { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 }, "overduefinescap", @@ -321,8 +328,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype"); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-12-13 12:44:30 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:VBD8atc/D/6rN0D+aTaSOQ +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-09-17 01:27:01 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LC04yqfB1tXpaQxSrYbHtw # You can replace this text with custom code or comments, and it will be preserved on regeneration --