From bbb0f455141c098a5428d2aae9f5deb59c5288e5 Mon Sep 17 00:00:00 2001 From: miker Date: Tue, 25 Nov 2008 15:43:56 +0000 Subject: [PATCH] add a note field to ausp git-svn-id: svn://svn.open-ils.org/ILS/trunk@11338 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/examples/fm_IDL.xml | 1 + Open-ILS/src/sql/Pg/005.schema.actors.sql | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Open-ILS/examples/fm_IDL.xml b/Open-ILS/examples/fm_IDL.xml index 3452f66281..a02b34fc3c 100644 --- a/Open-ILS/examples/fm_IDL.xml +++ b/Open-ILS/examples/fm_IDL.xml @@ -1734,6 +1734,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + diff --git a/Open-ILS/src/sql/Pg/005.schema.actors.sql b/Open-ILS/src/sql/Pg/005.schema.actors.sql index ceef438a0d..782026c668 100644 --- a/Open-ILS/src/sql/Pg/005.schema.actors.sql +++ b/Open-ILS/src/sql/Pg/005.schema.actors.sql @@ -493,7 +493,8 @@ CREATE TABLE actor.usr_standing_penalty ( usr INT NOT NULL REFERENCES actor.usr (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED, standing_penalty INT NOT NULL REFERENCES config.standing_penalty (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED, staff INT REFERENCES actor.usr (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED, - set_date TIMESTAMP WITH TIME ZONE DEFAULT NOW() + set_date TIMESTAMP WITH TIME ZONE DEFAULT NOW(), + note TEXT ); COMMENT ON TABLE actor.usr_standing_penalty IS $$ /* -- 2.11.0