[jboss-svn-commits] JBL Code SVN: r5883 - labs/jbossesb/trunk/product/docs/Install/database

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Tue Aug 15 03:00:22 EDT 2006


Author: tfennelly
Date: 2006-08-15 03:00:20 -0400 (Tue, 15 Aug 2006)
New Revision: 5883

Modified:
   labs/jbossesb/trunk/product/docs/Install/database/JBossESB-DB-postgres.sql
Log:
Ups, forgot to commit the changes to the script to add the customer table for the TrailBlazer.  For whatever reason, I wrongly thought Danny was doing this.  Sorry!

Modified: labs/jbossesb/trunk/product/docs/Install/database/JBossESB-DB-postgres.sql
===================================================================
--- labs/jbossesb/trunk/product/docs/Install/database/JBossESB-DB-postgres.sql	2006-08-14 21:15:15 UTC (rev 5882)
+++ labs/jbossesb/trunk/product/docs/Install/database/JBossESB-DB-postgres.sql	2006-08-15 07:00:20 UTC (rev 5883)
@@ -202,6 +202,28 @@
 -- Completed on 2006-06-23 18:14:49 SA Eastern Standard Time
 
 --
+-- Create the Customer table required by the TrailBlazer.
+--
+
+CREATE TABLE public.customer_index (
+    uid                 int8 NOT NULL,
+    stamp               int8 NULL,
+    latest_snap_uid     int8 NULL,
+    latest_snap_date    text NULL,
+    name                text NULL,
+    phone               text NULL,
+    address             text NULL,
+    PRIMARY KEY(uid)
+);
+  
+-- 
+-- Creation of the following index is not needed by postgres - the create-table above auto
+-- creates the index.
+
+-- CREATE UNIQUE INDEX customer_index_pkey
+--    ON public.customer_index(uid);
+
+--
 -- PostgreSQL database dump complete
 --
 




More information about the jboss-svn-commits mailing list