sogo/SOPE/GDLContentStore/appointment-oracle.ocs

164 lines
3.2 KiB
Plaintext

{
blobTablePattern = "SOGo_$folderId$_blob";
quickTablePattern = "SOGo_$folderId$_quick";
extractorClassName = "OCSiCalFieldExtractor";
fields = (
{
columnName = c_name;
sqlType = "VARCHAR2(255)";
allowsNull = NO;
isPrimaryKey = YES;
},
{
columnName = c_content;
sqlType = "CLOB";
allowsNull = NO;
isPrimaryKey = NO;
},
{
columnName = c_creationdate;
sqlType = "INTEGER";
allowsNull = NO;
isPrimaryKey = NO;
},
{
columnName = c_lastmodified;
sqlType = "INTEGER";
allowsNull = NO;
isPrimaryKey = NO;
},
{
columnName = c_version;
sqlType = "INTEGER";
allowsNull = NO;
isPrimaryKey = NO;
},
{
columnName = c_deleted;
sqlType = "INTEGER";
allowsNull = YES;
isPrimaryKey = NO;
}
);
quickFields = (
{
columnName = c_name;
sqlType = "VARCHAR2(255)";
allowsNull = NO;
isPrimaryKey = YES;
},
{
columnName = c_uid;
sqlType = "VARCHAR2(255)";
allowsNull = NO;
},
{
columnName = c_startdate;
sqlType = "INTEGER";
allowsNull = YES;
},
{
columnName = c_enddate;
sqlType = "INTEGER";
allowsNull = YES;
},
{
columnName = c_cycleenddate;
sqlType = "INTEGER";
allowsNull = YES;
},
{
columnName = c_title;
sqlType = "VARCHAR2(1000)";
allowsNull = NO;
},
{
columnName = c_participants;
sqlType = "CLOB";
allowsNull = YES;
},
{
columnName = c_isallday;
sqlType = "INTEGER";
allowsNull = YES;
},
{
columnName = c_iscycle;
sqlType = "INTEGER";
allowsNull = YES;
},
{
columnName = c_cycleinfo;
sqlType = "CLOB";
allowsNull = YES;
},
{
columnName = c_classification;
sqlType = "INTEGER";
allowsNull = NO;
},
{
columnName = c_isopaque;
sqlType = "INTEGER";
allowsNull = NO;
},
{
columnName = c_status;
sqlType = "INTEGER";
allowsNull = NO;
},
{
columnName = c_priority;
sqlType = "INTEGER";
allowsNull = YES;
},
{
columnName = c_location;
sqlType = "VARCHAR2(255)";
allowsNull = YES;
},
{
columnName = c_orgmail;
sqlType = "VARCHAR2(255)";
allowsNull = YES;
},
{
columnName = c_partmails;
sqlType = "CLOB";
allowsNull = YES;
},
{
columnName = c_partstates;
sqlType = "CLOB";
allowsNull = YES;
},
{
columnName = c_category;
sqlType = "VARCHAR2(255)";
allowsNull = YES;
},
{
columnName = c_sequence;
sqlType = "INTEGER";
allowsNull = YES;
},
{
columnName = c_component;
sqlType = "VARCHAR2(10)";
allowsNull = NO;
},
{
columnName = c_nextalarm;
sqlType = "INTEGER";
allowsNull = YES;
},
{
columnName = c_description;
sqlType = "CLOB";
allowsNull = YES;
}
);
}