+2005-07-26 Helge Hess <helge.hess@opengroupware.org>
+
+ * sql: added missing priority quickfield to SQLite tables (v0.9.31)
+
2005-07-13 Helge Hess <helge.hess@opengroupware.org>
* OCSContactFieldExtractor.m: do not crash if the content is not a
MAJOR_VERSION=0
MINOR_VERSION=9
-SUBMINOR_VERSION:=30
+SUBMINOR_VERSION:=31
# v0.9.30 requires libNGiCal v4.5.48
# v0.9.26 requires libGDLContentStore v4.5.26
-- TODO:
-- add a unique constraints on path
-DROP TABLE SOGo_folder_info;
+-- DROP TABLE SOGo_folder_info;
CREATE TABLE SOGo_folder_info (
c_folder_id INTEGER PRIMARY KEY,
ispublic INT NOT NULL,
status INT NOT NULL,
isopaque INT NULL,
+ priority INT NOT NULL, -- for marking high prio apts
location VARCHAR(256) NULL,
orgmail VARCHAR(256) NULL,
partmails VARCHAR(100000) NOT NULL, /* the emails of the participants */
ispublic INT NOT NULL,
status INT NOT NULL,
isopaque INT NULL,
+ priority INT NOT NULL, -- for marking high prio apts
location VARCHAR(256) NULL,
orgmail VARCHAR(256) NULL,
partmails VARCHAR(100000) NOT NULL, /* the emails of the participants */
iscycle INT NULL, /* client needs to fetch to resolve */
ispublic INT NOT NULL,
status INT NOT NULL,
+ priority INT NOT NULL, -- for marking high prio apts
isopaque INT NULL,
location VARCHAR(256) NULL,
orgmail VARCHAR(256) NULL,
- (id)lookupName:(NSString *)_key inContext:(id)_ctx acquire:(BOOL)_acquire {
id obj;
- if ([self isMessageKey:_key inContext:_ctx])
+ if ([self isMessageKey:_key inContext:_ctx]) {
/*
We assume here that _key is a number and methods are not and this is
moved above the super lookup since the super checks the
-toOneRelationshipKeys which in turn loads the message ids.
*/
return [self lookupImap4Message:_key inContext:_ctx];
+ }
/* check attributes directly bound to the app */
if ((obj = [super lookupName:_key inContext:_ctx acquire:NO]))