Mercurial > dive4elements > framework
comparison artifact-database/doc/schema-h2.sql @ 38:93edc04f3a10
Added postgresql support.
artifacts/trunk@104 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Fri, 18 Sep 2009 09:34:14 +0000 |
parents | |
children | 5e4bc24ea438 |
comparison
equal
deleted
inserted
replaced
37:3f03aee55c2f | 38:93edc04f3a10 |
---|---|
1 -- | |
2 -- schema to store artifacts in H2 databases. | |
3 -- | |
4 | |
5 BEGIN; | |
6 | |
7 -- not using AUTO_INCREMENT to be more compatible with | |
8 -- other dbms. | |
9 CREATE SEQUENCE ARTIFACTS_ID_SEQ; | |
10 | |
11 CREATE TABLE artifacts ( | |
12 id INT PRIMARY KEY NOT NULL, | |
13 gid UUID NOT NULL UNIQUE, | |
14 creation TIMESTAMP NOT NULL, | |
15 last_access TIMESTAMP NOT NULL, | |
16 ttl BIGINT, -- NULL means eternal | |
17 data BINARY | |
18 ); | |
19 | |
20 COMMIT; |