From d6a0c8b167e68285f09b521fc5b0e5e5ea2bb3c9 Mon Sep 17 00:00:00 2001 From: miker Date: Fri, 4 Aug 2006 17:27:36 +0000 Subject: [PATCH] adding cancel_time support to hold_request git-svn-id: svn://svn.open-ils.org/ILS/trunk@5300 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/examples/fm_IDL.xml | 13 +------------ .../src/perlmods/OpenILS/Application/Storage/CDBI/action.pm | 2 +- Open-ILS/src/sql/Pg/090.schema.action.sql | 1 + 3 files changed, 3 insertions(+), 13 deletions(-) diff --git a/Open-ILS/examples/fm_IDL.xml b/Open-ILS/examples/fm_IDL.xml index 00301ec61c..11a4ac5df8 100644 --- a/Open-ILS/examples/fm_IDL.xml +++ b/Open-ILS/examples/fm_IDL.xml @@ -758,18 +758,6 @@ - - - - - - - - - - - - @@ -1112,6 +1100,7 @@ + diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/action.pm b/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/action.pm index 23cf0b3fa2..61d1f46445 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/action.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/action.pm @@ -87,7 +87,7 @@ __PACKAGE__->table('action_hold_request'); __PACKAGE__->columns(Primary => 'id'); __PACKAGE__->columns(Essential => qw/request_time capture_time fulfillment_time prev_check_time expire_time requestor usr - hold_type holdable_formats target + hold_type holdable_formats target cancel_time phone_notify email_notify selection_depth pickup_lib current_copy request_lib fulfillment_staff fulfillment_lib selection_ou/); diff --git a/Open-ILS/src/sql/Pg/090.schema.action.sql b/Open-ILS/src/sql/Pg/090.schema.action.sql index 3eaa4edb11..079fad476b 100644 --- a/Open-ILS/src/sql/Pg/090.schema.action.sql +++ b/Open-ILS/src/sql/Pg/090.schema.action.sql @@ -153,6 +153,7 @@ CREATE TABLE action.hold_request ( return_time TIMESTAMP WITH TIME ZONE, prev_check_time TIMESTAMP WITH TIME ZONE, expire_time TIMESTAMP WITH TIME ZONE, + cancel_time TIMESTAMP WITH TIME ZONE, target BIGINT NOT NULL, -- see hold_type current_copy BIGINT REFERENCES asset.copy (id) ON DELETE SET NULL, fulfillment_staff INT REFERENCES actor.usr (id), -- 2.11.0