sogo/OGoContentStore/contact-oracle.ocs
Francis Lachapelle 158c290615 Character case error in contact-oracle.ocs.
Monotone-Parent: e58cd8ddee83e89995547f174e7a1a6085b2a8f0
Monotone-Revision: b1d970d4f6e94971dfb6cc4f4be3c09a236823cf

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2011-10-25T18:03:52
2011-10-25 18:03:52 +00:00

109 lines
2.1 KiB
Plaintext

{
blobTablePattern = "SOGo_$folderId$_blob";
quickTablePattern = "SOGo_$folderId$_quick";
extractorClassName= "OCSContactFieldExtractor";
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_givenname;
sqlType = "VARCHAR2(255)";
allowsNull = YES;
},
{
columnName = c_cn;
sqlType = "VARCHAR2(255)";
allowsNull = YES;
},
{
columnName = c_sn;
sqlType = "VARCHAR2(255)";
allowsNull = YES;
},
{
columnName = c_screenname;
sqlType = "VARCHAR2(255)";
allowsNull = YES;
},
{
columnName = c_l;
sqlType = "VARCHAR2(255)";
allowsNull = YES;
},
{
columnName = c_mail;
sqlType = "VARCHAR2(255)";
allowsNull = YES;
},
{
columnName = c_o;
sqlType = "VARCHAR2(255)";
allowsNull = YES;
},
{
columnName = c_ou;
sqlType = "VARCHAR2(255)";
allowsNull = YES;
},
{
columnName = c_telephonenumber;
sqlType = "VARCHAR2(255)";
allowsNull = YES;
},
{
columnName = c_categories;
sqlType = "VARCHAR2(255)";
allowsNull = YES;
},
{
columnName = c_component;
sqlType = "VARCHAR2(10)";
allowsNull = NO;
},
);
}