Monotone-Parent: 321895620e6004eb8531368e2dcdf24c7b8313fe

Monotone-Revision: 57460c0d603329bd97af00dc5d497ed44b731d76

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-04-23T15:05:45
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
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 (
uid,
allowinternet,
timezonename,
calendaruids
defaults,
settings
)
VALUES (
'${USER_ID}', 1, '${TIMEZONE}', '${USER_ID}'
'${USER_ID}', '{}', '{}'
);
EOF

View 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
);