[open-ils-commits] r17065 - trunk/Open-ILS/src/sql/Pg (dbs)

svn at svn.open-ils.org svn at svn.open-ils.org
Mon Aug 2 22:24:26 EDT 2010


Author: dbs
Date: 2010-08-02 22:24:24 -0400 (Mon, 02 Aug 2010)
New Revision: 17065

Modified:
   trunk/Open-ILS/src/sql/Pg/200.schema.acq.sql
Log:
Correct DDL for creating a fresh schema - match upgrade 0356


Modified: trunk/Open-ILS/src/sql/Pg/200.schema.acq.sql
===================================================================
--- trunk/Open-ILS/src/sql/Pg/200.schema.acq.sql	2010-08-02 20:01:04 UTC (rev 17064)
+++ trunk/Open-ILS/src/sql/Pg/200.schema.acq.sql	2010-08-03 02:24:24 UTC (rev 17065)
@@ -759,7 +759,7 @@
 ) INHERITS (config.remote_account);
 
 -- We need a UNIQUE constraint here also, to support the FK from acq.provider.edi_default
-ALTER TABLE acq.edi_account ADD CONSTRAINT PRIMARY KEY (id);
+ALTER TABLE acq.edi_account ADD PRIMARY KEY (id);
 
 CREATE TABLE acq.edi_message (
     id               SERIAL          PRIMARY KEY,



More information about the open-ils-commits mailing list