]> err.no Git - scalable-opengroupware.org/commitdiff
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@82 d1b88da0-ebda-0310-925b-ed51d8...
authorhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Tue, 29 Jun 2004 19:59:16 +0000 (19:59 +0000)
committerhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Tue, 29 Jun 2004 19:59:16 +0000 (19:59 +0000)
OGoContentStore/sql/appointment-hh-create.psql [new file with mode: 0644]

diff --git a/OGoContentStore/sql/appointment-hh-create.psql b/OGoContentStore/sql/appointment-hh-create.psql
new file mode 100644 (file)
index 0000000..747b791
--- /dev/null
@@ -0,0 +1,24 @@
+-- $Id$
+--
+-- (C) 2004 SKYRIX Software AG
+--
+
+DROP TABLE SOGo_helge_privcal_quick;
+DROP TABLE SOGo_helge_privcal;
+
+CREATE TABLE SOGo_helge_privcal_quick (
+  c_name       VARCHAR(256)    NOT NULL PRIMARY KEY, -- the filename
+  uid          VARCHAR(256)    NOT NULL,
+  startdate    INT NOT NULL,
+  enddate      INT NOT NULL,
+  title        VARCHAR(1000)   NOT NULL,
+  participants VARCHAR(100000) NOT NULL
+);
+
+CREATE TABLE SOGo_helge_privcal (
+  c_name         VARCHAR(256)    NOT NULL PRIMARY KEY, -- the filename
+  c_content      VARCHAR(100000) NOT NULL, -- the BLOB
+  c_creationdate INT             NOT NULL, -- creation date
+  c_lastmodified INT             NOT NULL, -- last modification (UPDATE)
+  c_version      INT             NOT NULL  -- version counter
+);