From 8a5c03a9c149c0bad20b0a45161c8a083c1212d6 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 11 Mar 2022 15:22:01 +0000 Subject: [PATCH] Bug 30275: renewals_count DBIC Update --- Koha/Schema/Result/Issue.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Koha/Schema/Result/Issue.pm b/Koha/Schema/Result/Issue.pm index 5d26b5b563..0ab760fad4 100644 --- a/Koha/Schema/Result/Issue.pm +++ b/Koha/Schema/Result/Issue.pm @@ -87,7 +87,7 @@ date the item was returned, will be NULL until moved to old_issues date the item was last renewed -=head2 renewals +=head2 renewals_count data_type: 'tinyint' default_value: 0 @@ -197,7 +197,7 @@ __PACKAGE__->add_columns( datetime_undef_if_invalid => 1, is_nullable => 1, }, - "renewals", + "renewals_count", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "unseen_renewals", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, @@ -321,8 +321,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-11-17 10:01:24 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kDcP8DNMT8sLUmzBFfz3fg +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-03-11 15:10:14 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TERiBbm+B4jMEuNM2dVbfQ __PACKAGE__->add_columns( '+auto_renew' => { is_boolean => 1 }, -- 2.20.1