@@ -, +, @@ --- 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 @@ -118,6 +118,12 @@ __PACKAGE__->table("old_reserves"); datetime_undef_if_invalid: 1 is_nullable: 1 +=head2 pickupexpired + + data_type: 'date' + datetime_undef_if_invalid: 1 + is_nullable: 1 + =head2 lowestPriority accessor: 'lowest_priority' @@ -196,6 +202,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", @@ -314,8 +322,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2020-08-31 14:16:48 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:DnOerXRIsIGIRKl9I0HZUQ +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2020-04-28 12:23:24 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:AAKfhZfJaya1XUWTqeVMgA __PACKAGE__->add_columns( '+item_level_hold' => { is_boolean => 1 }, --- a/Koha/Schema/Result/Reserve.pm +++ a/Koha/Schema/Result/Reserve.pm @@ -122,6 +122,12 @@ __PACKAGE__->table("reserves"); datetime_undef_if_invalid: 1 is_nullable: 1 +=head2 pickupexpired + + data_type: 'date' + datetime_undef_if_invalid: 1 + is_nullable: 1 + =head2 lowestPriority accessor: 'lowest_priority' @@ -210,6 +216,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", @@ -353,8 +361,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2020-08-31 14:16:48 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:goRy3ZQWpGNmicok5Av37Q +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2020-04-28 12:23:24 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lCAjQKeOZPYLaMstOD0oiw __PACKAGE__->belongs_to( "item", --