Monotone-Parent: 321895620e6004eb8531368e2dcdf24c7b8313fe

Monotone-Revision: 57460c0d603329bd97af00dc5d497ed44b731d76

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-04-23T15:05:45
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau 2007-04-23 15:05:45 +00:00
parent 9936eb9b79
commit d496458822
2 changed files with 6 additions and 9 deletions

View file

@ -152,12 +152,11 @@ DELETE FROM SOGo_user_profile WHERE uid = '${USER_ID}';
INSERT INTO SOGo_user_profile ( INSERT INTO SOGo_user_profile (
uid, uid,
allowinternet, defaults,
timezonename, settings
calendaruids
) )
VALUES ( VALUES (
'${USER_ID}', 1, '${TIMEZONE}', '${USER_ID}' '${USER_ID}', '{}', '{}'
); );
EOF EOF

View file

@ -3,9 +3,7 @@
-- --
CREATE TABLE SOGo_user_profile ( CREATE TABLE SOGo_user_profile (
uid VARCHAR(255) NOT NULL PRIMARY KEY, uid VARCHAR(255) NOT NULL PRIMARY KEY,
allowinternet SMALLINT DEFAULT 0, defaults TEXT,
timezonename VARCHAR(255) DEFAULT 'MET', settings TEXT
calendaruids TEXT,
additionaladdressbooks TEXT
); );