From bcad4a15aa8e0751985aa748db3fbc2536a73968 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 13 Dec 2017 16:56:57 -0300 Subject: [PATCH] Bug 19804: DBIC Schema changes Signed-off-by: Hugo Agud --- 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 0ea74ca..5958055 100644 --- a/Koha/Schema/Result/Issuingrule.pm +++ b/Koha/Schema/Result/Issuingrule.pm @@ -70,6 +70,12 @@ __PACKAGE__->table("issuingrules"); data_type: 'integer' is_nullable: 1 +=head2 suspension_chargeperiod + + data_type: 'integer' + default_value: 1 + is_nullable: 1 + =head2 firstremind data_type: 'integer' @@ -234,6 +240,8 @@ __PACKAGE__->add_columns( { data_type => "integer", is_nullable => 1 }, "maxsuspensiondays", { data_type => "integer", is_nullable => 1 }, + "suspension_chargeperiod", + { data_type => "integer", default_value => 1, is_nullable => 1 }, "firstremind", { data_type => "integer", is_nullable => 1 }, "chargeperiod", @@ -313,8 +321,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype"); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-04-27 19:15:48 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:D1443VWPcoIXN3+lIkckIQ +# 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 # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.1.4