sogo/OGoContentStore/contact.ocs
Francis Lachapelle 19169e821d Fix for bug #1442.
See ChangeLog.

Monotone-Parent: d7092dc459f63233bb9e0a7aadc3380b2682ed2a
Monotone-Revision: f6c6bfab15922450127ccb9597bbc97468d695c0

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2011-10-21T14:57:57
Monotone-Branch: ca.inverse.sogo
2011-10-21 14:57:57 +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 = "VARCHAR(100000)";
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;
},
);
}