From 868ecdbbb33136bad96857da288d9bc060360444 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 27 Apr 2017 19:21:11 +0000 Subject: [PATCH] Bug 16344 - Update Schema Signed-off-by: Kyle M Hall --- Koha/Schema/Result/Issuingrule.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Issuingrule.pm b/Koha/Schema/Result/Issuingrule.pm index 62f35f2339..0ea74ca2ac 100644 --- a/Koha/Schema/Result/Issuingrule.pm +++ b/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' @@ -265,6 +271,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 }, "holds_per_record", @@ -305,8 +313,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype"); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-11-02 10:33:37 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:t9AhZLbm4SE7mx25LAyhGA +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-04-27 19:15:48 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:D1443VWPcoIXN3+lIkckIQ # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.20.1