[open-ils-commits] r14904 - trunk/Open-ILS/src/sql/Pg (phasefx)
svn at svn.open-ils.org
svn at svn.open-ils.org
Fri Nov 13 12:04:19 EST 2009
Author: phasefx
Date: 2009-11-13 12:04:16 -0500 (Fri, 13 Nov 2009)
New Revision: 14904
Modified:
trunk/Open-ILS/src/sql/Pg/090.schema.action.sql
Log:
remove the NOT NULL from here to match the upgrade script
Modified: trunk/Open-ILS/src/sql/Pg/090.schema.action.sql
===================================================================
--- trunk/Open-ILS/src/sql/Pg/090.schema.action.sql 2009-11-13 16:55:58 UTC (rev 14903)
+++ trunk/Open-ILS/src/sql/Pg/090.schema.action.sql 2009-11-13 17:04:16 UTC (rev 14904)
@@ -427,7 +427,7 @@
prev_hop INT REFERENCES action.transit_copy (id) DEFERRABLE INITIALLY DEFERRED,
copy_status INT NOT NULL REFERENCES config.copy_status (id) DEFERRABLE INITIALLY DEFERRED,
persistant_transfer BOOL NOT NULL DEFAULT FALSE,
- prev_dest INT NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED
+ prev_dest INT REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED
);
CREATE INDEX active_transit_dest_idx ON "action".transit_copy (dest);
CREATE INDEX active_transit_source_idx ON "action".transit_copy (source);
More information about the open-ils-commits
mailing list