]> err.no Git - scalable-opengroupware.org/blob - OGoContentStore/contact.ocs
fixed some makefile in OCS
[scalable-opengroupware.org] / OGoContentStore / contact.ocs
1 {
2   blobTablePattern  = "SOGo_$folderId$_blob";
3   quickTablePattern = "SOGo_$folderId$_quick";
4
5   fields = (
6     {
7       columnName = uid;
8       sqlType    = "VARCHAR(256)";
9       allowsNull = NO;
10     },
11     {
12       columnName = name;
13       sqlType    = "VARCHAR(1000)";
14       allowsNull = NO;
15     },
16     {
17       columnName = lastname;
18       sqlType    = "VARCHAR(1000)";
19       allowsNull = NO;
20     },
21     {
22       columnName = email;
23       sqlType    = "VARCHAR(1000)";
24       allowsNull = NO;
25     },
26     {
27       columnName = location;
28       sqlType    = "VARCHAR(256)";
29       allowsNull = YES;
30     },
31   );
32 }