]> err.no Git - scalable-opengroupware.org/commitdiff
fixes to the scripts
authorznek <znek@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Fri, 10 Dec 2004 13:25:57 +0000 (13:25 +0000)
committerznek <znek@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Fri, 10 Dec 2004 13:25:57 +0000 (13:25 +0000)
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@468 d1b88da0-ebda-0310-925b-ed51d893ca5b

OGoContentStore/ChangeLog
OGoContentStore/Version
OGoContentStore/sql/foldertablecreate-helge-privcal.psql
OGoContentStore/sql/generate-folderinfo-sql-for-users.sh

index 25d37c9a00044f34e3e9bbde91201af12286642c..4b2cdc356ed2358bcd3d3d0fbdee1bac38eec4b7 100644 (file)
@@ -1,3 +1,7 @@
+2004-12-10  Marcus Mueller  <znek@mulle-kybernetik.com>
+
+       * sql: updated all generation scripts to the latest version (v0.9.15)
+
 2004-12-09  Marcus Mueller  <znek@mulle-kybernetik.com>
 
        * v0.9.14
index d6061d936cfe6c6b61f4a409aadb324278fc94a0..3b1ed5fdb1850dc4e0d6f3af68050be63ece8c4d 100644 (file)
@@ -2,7 +2,7 @@
 
 MAJOR_VERSION=0
 MINOR_VERSION=9
-SUBMINOR_VERSION:=14
+SUBMINOR_VERSION:=15
 
 # v0.9.11 requires libFoundation   v1.0.63
 # v0.9.11 requires libNGExtensions v4.3.125
index 8195c25e4b74cb46645ecbf4eceee2f15de1f031..11334170d56191a14941a1110987a39f8caee47b 100644 (file)
@@ -15,7 +15,11 @@ CREATE TABLE SOGo_helge_privcal_quick (
   participants VARCHAR(100000) NOT NULL, -- the CNs of the participants
   isallday     INT             NULL,
   iscycle      INT             NULL,     -- client needs to fetch to resolve
+  ispublic     INT             NOT NULL,
+  status       INT             NOT NULL,
+  isopaque     INT             NULL,
   location     VARCHAR(256)    NULL,
+  orgmail      VARCHAR(256)    NULL,
   partmails    VARCHAR(100000) NOT NULL, -- the emails of the participants
   sequence     INT             NULL      -- the iCal sequence
 );
index 6eac182c985168cf42559364db56e5e6524c4154..c483679a1509af5d06d8a2e79bcf9091152f9677 100755 (executable)
@@ -77,7 +77,7 @@ CREATE TABLE SOGo_${USER_TABLE}_privcal_quick (
   isallday     INT             NULL,
   iscycle      INT             NULL,     -- client needs to fetch to resolve
   ispublic     INT             NOT NULL,
-  istentative  INT             NULL,
+  status       INT             NOT NULL,
   isopaque     INT             NULL,
   location     VARCHAR(256)    NULL,
   orgmail      VARCHAR(256)    NULL,
@@ -89,7 +89,8 @@ CREATE TABLE SOGo_${USER_TABLE}_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_lastmodified INT             NOT NULL, -- last modification (UPDATE)
+  c_version      INT             NOT NULL  -- version counter
 );
 
 DROP TABLE SOGo_${USER_TABLE}_contacts_quick;