From e852c6c8e28abb3efed306caba158c411da6a2b1 Mon Sep 17 00:00:00 2001 From: Emmi Takkinen Date: Wed, 31 Mar 2021 10:29:38 +0300 Subject: [PATCH 2/2] Bug 10744: DO NOT PUSH! Schema changes --- Koha/Schema/Result/OldReserve.pm | 12 ++++++++++-- Koha/Schema/Result/Reserve.pm | 12 ++++++++++-- 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/Koha/Schema/Result/OldReserve.pm b/Koha/Schema/Result/OldReserve.pm index 05174e1566..aae7d106dc 100644 --- a/Koha/Schema/Result/OldReserve.pm +++ b/Koha/Schema/Result/OldReserve.pm @@ -157,6 +157,12 @@ the date the item was marked as waiting for the patron at the library the date the hold expires (usually the date entered by the patron to say they don't need the hold after a certain date) +=head2 pickupexpired + + data_type: 'date' + datetime_undef_if_invalid: 1 + is_nullable: 1 + =head2 lowestPriority accessor: 'lowest_priority' @@ -249,6 +255,8 @@ __PACKAGE__->add_columns( { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, "expirationdate", { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, + "pickupexpired", + { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, "lowestPriority", { accessor => "lowest_priority", @@ -367,8 +375,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:aVQsdX811LswCsWyBqkSbQ +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-03-31 10:19:09 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CJ6PeuqOCTaE+BbghLhYsg __PACKAGE__->belongs_to( "item", diff --git a/Koha/Schema/Result/Reserve.pm b/Koha/Schema/Result/Reserve.pm index 8ddda1437c..a83c268ebf 100644 --- a/Koha/Schema/Result/Reserve.pm +++ b/Koha/Schema/Result/Reserve.pm @@ -162,6 +162,12 @@ the date the item was marked as waiting for the patron at the library the date the hold expires (usually the date entered by the patron to say they don't need the hold after a certain date) +=head2 pickupexpired + + data_type: 'date' + datetime_undef_if_invalid: 1 + is_nullable: 1 + =head2 lowestPriority accessor: 'lowest_priority' @@ -258,6 +264,8 @@ __PACKAGE__->add_columns( { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, "expirationdate", { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, + "pickupexpired", + { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, "lowestPriority", { accessor => "lowest_priority", @@ -421,8 +429,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BlMb2M0MEmFuTiMSSBEseg +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-03-31 10:19:09 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:zw7qZTlQAxT5ZY1tunepKA __PACKAGE__->belongs_to( "item", -- 2.25.1