sogo/OGoContentStore/appointment.ocs
Wolfgang Sourdeau 8f08599db1 Monotone-Parent: f37d0868145e5cd1f879ccf7033ca5d1900df42b
Monotone-Revision: 9788a56d4a666ff0e884a4516969eeff08276d4c

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-06-23T14:32:53
Monotone-Branch: ca.inverse.sogo
2008-06-23 14:32:53 +00:00

110 lines
2.1 KiB
Plaintext

{
blobTablePattern = "SOGo_$folderId$_blob";
quickTablePattern = "SOGo_$folderId$_quick";
extractorClassName = "OCSiCalFieldExtractor";
fields = (
{
columnName = c_name;
sqlType = "VARCHAR(256)";
allowsNull = NO;
isPrimaryKey = YES;
},
{
columnName = c_uid;
sqlType = "VARCHAR(256)";
allowsNull = NO;
},
{
columnName = c_startdate;
sqlType = "INT";
allowsNull = YES;
},
{
columnName = c_enddate;
sqlType = "INT";
allowsNull = YES;
},
{
columnName = c_cycleenddate;
sqlType = "INT";
allowsNull = YES;
},
{
columnName = c_title;
sqlType = "VARCHAR(1000)";
allowsNull = NO;
},
{
columnName = c_participants;
sqlType = "VARCHAR(1000000)";
allowsNull = YES;
},
{
columnName = c_isallday;
sqlType = "INT";
allowsNull = YES;
},
{
columnName = c_iscycle;
sqlType = "INT";
allowsNull = YES;
},
{
columnName = c_cycleinfo;
sqlType = "VARCHAR(1000)";
allowsNull = YES;
},
{
columnName = c_classification;
sqlType = "INT";
allowsNull = NO;
},
{
columnName = c_isopaque;
sqlType = "INT";
allowsNull = NO;
},
{
columnName = c_status;
sqlType = "INT";
allowsNull = NO;
},
{
columnName = c_priority;
sqlType = "INT";
allowsNull = YES;
},
{
columnName = c_location;
sqlType = "VARCHAR(256)";
allowsNull = YES;
},
{
columnName = c_orgmail;
sqlType = "VARCHAR(256)";
allowsNull = YES;
},
{
columnName = c_partmails;
sqlType = "VARCHAR(100000)";
allowsNull = YES;
},
{
columnName = c_partstates;
sqlType = "VARCHAR(256)";
allowsNull = YES;
},
{
columnName = c_sequence;
sqlType = "INT";
allowsNull = YES;
},
{
columnName = c_component;
sqlType = "VARCHAR(10)";
allowsNull = NO;
},
);
}