From d5957bf93067cbdc8bdfca2ec5fb32514a3d0855 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Sun, 30 Oct 2016 18:42:19 +0000 Subject: [PATCH] Bug 16344: [DO NOT PUSH] Schema changes --- Koha/Schema/Result/Issuingrule.pm | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Issuingrule.pm b/Koha/Schema/Result/Issuingrule.pm index 28dc795..d70cebe 100644 --- a/Koha/Schema/Result/Issuingrule.pm +++ b/Koha/Schema/Result/Issuingrule.pm @@ -153,6 +153,17 @@ __PACKAGE__->table("issuingrules"); default_value: 0 is_nullable: 1 +=head2 no_auto_renewal_after + + 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' @@ -258,6 +269,10 @@ __PACKAGE__->add_columns( { data_type => "integer", is_nullable => 1 }, "auto_renew", { 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 }, "holds_per_record", @@ -298,8 +313,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype"); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-10-24 13:56:21 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:eUHth1uaatT2fzY2bihv3g +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-10-30 18:41:47 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hhWg+HJ8brj2n9vR8cfRrw # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.1.4