diff artifact-database/doc/schema.sql @ 10:e8626caac353

* Made Artifact life cycle symmetric: setup/endOfLife. * Implement defaults for Artifact and ArtifactFactory. * Added connection pooling from apache commons dbcp * Made sql schema of artifact database more compatible. * Improve example config. * Made artifactdb start with 'mvn exec:exec' * minor fixes. artifacts/trunk@25 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Sun, 06 Sep 2009 12:00:56 +0000
parents 13a12b607baf
children
line wrap: on
line diff
--- a/artifact-database/doc/schema.sql	Fri Sep 04 16:06:44 2009 +0000
+++ b/artifact-database/doc/schema.sql	Sun Sep 06 12:00:56 2009 +0000
@@ -4,12 +4,16 @@
 
 BEGIN;
 
+-- not using AUTO_INCREMENT to be more compatible with
+-- other dbms.
+CREATE SEQUENCE ARTIFACTS_ID_SEQ;
+
 CREATE TABLE artifacts (
-    id          INT AUTO_INCREMENT PRIMARY KEY NOT NULL,
-    gid         UUID      NOT NULL UNIQUE,
-    creation    TIMESTAMP NOT NULL,
-    last_access TIMESTAMP NOT NULL,
-    ttl         TIME, -- NULL means eternal
+    id          INT PRIMARY KEY NOT NULL,
+    gid         UUID            NOT NULL UNIQUE,
+    creation    TIMESTAMP       NOT NULL,
+    last_access TIMESTAMP       NOT NULL,
+    ttl         BIGINT, -- NULL means eternal
     data        BINARY
 );
 

http://dive4elements.wald.intevation.org