@@ -, +, @@ --- Koha/Schema/Result/OldReserve.pm | 12 ++++++++++-- Koha/Schema/Result/Reserve.pm | 12 ++++++++++-- 2 files changed, 20 insertions(+), 4 deletions(-) --- a/Koha/Schema/Result/OldReserve.pm +++ a/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", --- a/Koha/Schema/Result/Reserve.pm +++ a/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", --