From ff3989477f84b641c00e4e5f5c52f151d9c3ddc0 Mon Sep 17 00:00:00 2001 From: Emmi Takkinen Date: Mon, 14 Sep 2020 09:30:13 +0300 Subject: [PATCH 1/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 2cc0e2f425..79b75e8694 100644 --- a/Koha/Schema/Result/OldReserve.pm +++ b/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 }, diff --git a/Koha/Schema/Result/Reserve.pm b/Koha/Schema/Result/Reserve.pm index 2d7b397ec3..0777b8502a 100644 --- a/Koha/Schema/Result/Reserve.pm +++ b/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", -- 2.17.1