From: scottmk Date: Tue, 21 Jul 2009 20:56:53 +0000 (+0000) Subject: Oops -- correcting carelessness of previous change X-Git-Tag: sprint4-merge-nov22~9638 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=71338c5496c31c25de6120ba56f5b00438cced3f;p=working%2FEvergreen.git Oops -- correcting carelessness of previous change to definition of action.circulation. workstation references actor,workstation, not actor.org_unit. git-svn-id: svn://svn.open-ils.org/ILS/trunk@13677 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/sql/Pg/090.schema.action.sql b/Open-ILS/src/sql/Pg/090.schema.action.sql index d770e20df3..dc6c8bf3b6 100644 --- a/Open-ILS/src/sql/Pg/090.schema.action.sql +++ b/Open-ILS/src/sql/Pg/090.schema.action.sql @@ -124,7 +124,7 @@ CREATE TABLE action.circulation ( recuring_fine_rule TEXT NOT NULL, -- name of "circ fine" rule max_fine_rule TEXT NOT NULL, -- name of "max fine" rule stop_fines TEXT CHECK (stop_fines IN ('CHECKIN','CLAIMSRETURNED','LOST','MAXFINES','RENEW','LONGOVERDUE')), - workstation INT REFERENCES actor.org_unit(id) + workstation INT REFERENCES actor.workstation(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED ) INHERITS (money.billable_xact);