Mercurial > dive4elements > framework
view artifact-database/doc/schema.sql @ 7:f95d9a449215
Insert new Parameter to Setuproutine
artifacts/trunk@21 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Fri, 04 Sep 2009 15:19:13 +0000 |
parents | 13a12b607baf |
children | e8626caac353 |
line wrap: on
line source
-- -- schema to store artifacts in H2 databases. -- BEGIN; 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 data BINARY ); COMMIT;