sogo/OGoContentStore/contact.ocs
Ludovic Marcotte fd3d125d20 Fix for bug #1339
Monotone-Parent: 5e690b49423932996ff78f8ea2c1881306f09fa3
Monotone-Revision: 2c40f25dddacc34d66befa0a7c8e6c93868a9a92

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2011-12-30T16:59:13
2011-12-30 16:59:13 +00:00

109 lines
2.1 KiB
Plaintext

{
blobTablePattern = "SOGo_$folderId$_blob";
quickTablePattern = "SOGo_$folderId$_quick";
extractorClassName= "OCSContactFieldExtractor";
fields = (
{
columnName = c_name;
sqlType = "VARCHAR(255)";
allowsNull = NO;
isPrimaryKey = YES;
},
{
columnName = c_content;
sqlType = "TEXT";
allowsNull = NO;
isPrimaryKey = NO;
},
{
columnName = c_creationdate;
sqlType = "INT4";
allowsNull = NO;
isPrimaryKey = NO;
},
{
columnName = c_lastmodified;
sqlType = "INT4";
allowsNull = NO;
isPrimaryKey = NO;
},
{
columnName = c_version;
sqlType = "INT4";
allowsNull = NO;
isPrimaryKey = NO;
},
{
columnName = c_deleted;
sqlType = "INT4";
allowsNull = YES;
isPrimaryKey = NO;
}
);
quickFields = (
{
columnName = c_name;
sqlType = "VARCHAR(255)";
allowsNull = NO;
isPrimaryKey = YES;
},
{
columnName = c_givenname;
sqlType = "VARCHAR(255)";
allowsNull = YES;
},
{
columnName = c_cn;
sqlType = "VARCHAR(255)";
allowsNull = YES;
},
{
columnName = c_sn;
sqlType = "VARCHAR(255)";
allowsNull = YES;
},
{
columnName = c_screenname;
sqlType = "VARCHAR(255)";
allowsNull = YES;
},
{
columnName = c_l;
sqlType = "VARCHAR(255)";
allowsNull = YES;
},
{
columnName = c_mail;
sqlType = "VARCHAR(255)";
allowsNull = YES;
},
{
columnName = c_o;
sqlType = "VARCHAR(255)";
allowsNull = YES;
},
{
columnName = c_ou;
sqlType = "VARCHAR(255)";
allowsNull = YES;
},
{
columnName = c_telephonenumber;
sqlType = "VARCHAR(255)";
allowsNull = YES;
},
{
columnName = c_categories;
sqlType = "VARCHAR(255)";
allowsNull = YES;
},
{
columnName = c_component;
sqlType = "VARCHAR(10)";
allowsNull = NO;
},
);
}