]> err.no Git - scalable-opengroupware.org/commitdiff
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1049 d1b88da0-ebda-0310...
authorwolfgang <wolfgang@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Mon, 23 Apr 2007 13:28:42 +0000 (13:28 +0000)
committerwolfgang <wolfgang@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Mon, 23 Apr 2007 13:28:42 +0000 (13:28 +0000)
OGoContentStore/sql/generate-folderinfo-sql-for-users.sh
OGoContentStore/sql/profile-create.psql

index 0868d1915566ea78f3ee8fe74bb5ac0b0052bc00..5190b2fa3f7bd3460d10d538354fb319e1927442 100755 (executable)
@@ -152,12 +152,11 @@ DELETE FROM SOGo_user_profile WHERE uid = '${USER_ID}';
 
 INSERT INTO SOGo_user_profile ( 
   uid,
-  allowinternet,
-  timezonename,
-  calendaruids
+  defaults,
+  settings
 )
 VALUES (
-    '${USER_ID}', 1, '${TIMEZONE}', '${USER_ID}'
+    '${USER_ID}', '{}', '{}'
 );
 
 EOF
index b60cabbff3251caafacf7fc488f9faf626d8ae9e..5bc8531290f6a2e1e153b90610f18e92cf3eac02 100644 (file)
@@ -3,9 +3,7 @@
 --
 
 CREATE TABLE SOGo_user_profile (
-  uid           VARCHAR(255) NOT NULL PRIMARY KEY,
-  allowinternet SMALLINT     DEFAULT 0,
-  timezonename  VARCHAR(255) DEFAULT 'MET',
-  calendaruids  TEXT,
-  additionaladdressbooks  TEXT
+  uid      VARCHAR(255) NOT NULL PRIMARY KEY,
+  defaults TEXT,
+  settings TEXT
 );