@@ -, +, @@ --- Koha/Schema/Result/Issuingrule.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) --- a/Koha/Schema/Result/Issuingrule.pm +++ a/Koha/Schema/Result/Issuingrule.pm @@ -158,6 +158,12 @@ __PACKAGE__->table("issuingrules"); data_type: 'integer' is_nullable: 1 +=head2 no_auto_renewal_after_hard_limit + + data_type: 'date' + datetime_undef_if_invalid: 1 + is_nullable: 1 + =head2 reservesallowed data_type: 'smallint' @@ -252,6 +258,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", default_value => 0, is_nullable => 1 }, "no_auto_renewal_after", { data_type => "integer", is_nullable => 1 }, + "no_auto_renewal_after_hard_limit", + { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, "reservesallowed", { data_type => "smallint", default_value => 0, is_nullable => 0 }, "branchcode", @@ -283,8 +291,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype"); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-01-15 11:51:25 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:IluzURuro4z+ZaH0jfjH5Q +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-04-25 21:10:41 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:O8WVwjJo4SL7RR7UkkaCyw # You can replace this text with custom content, and it will be preserved on regeneration --