Oops -- correcting carelessness of previous change
authorscottmk <scottmk@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Tue, 21 Jul 2009 20:56:53 +0000 (20:56 +0000)
committerscottmk <scottmk@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Tue, 21 Jul 2009 20:56:53 +0000 (20:56 +0000)
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

Open-ILS/src/sql/Pg/090.schema.action.sql

index d770e20..dc6c8bf 100644 (file)
@@ -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);