From cafa23192c0de6d3d2b1c868ac3beb5c530bea6a Mon Sep 17 00:00:00 2001 From: wolfgang Date: Mon, 23 Apr 2007 13:28:42 +0000 Subject: [PATCH] git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1049 d1b88da0-ebda-0310-925b-ed51d893ca5b --- OGoContentStore/sql/generate-folderinfo-sql-for-users.sh | 7 +++---- OGoContentStore/sql/profile-create.psql | 8 +++----- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/OGoContentStore/sql/generate-folderinfo-sql-for-users.sh b/OGoContentStore/sql/generate-folderinfo-sql-for-users.sh index 0868d191..5190b2fa 100755 --- a/OGoContentStore/sql/generate-folderinfo-sql-for-users.sh +++ b/OGoContentStore/sql/generate-folderinfo-sql-for-users.sh @@ -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 diff --git a/OGoContentStore/sql/profile-create.psql b/OGoContentStore/sql/profile-create.psql index b60cabbf..5bc85312 100644 --- a/OGoContentStore/sql/profile-create.psql +++ b/OGoContentStore/sql/profile-create.psql @@ -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 ); -- 2.39.5