]> err.no Git - scalable-opengroupware.org/blob - OGoContentStore/appointment.ocs
bugfixes and performance upgrade for recurrent events
[scalable-opengroupware.org] / OGoContentStore / appointment.ocs
1 {
2   blobTablePattern   = "SOGo_$folderId$_blob";
3   quickTablePattern  = "SOGo_$folderId$_quick";
4   extractorClassName = "OCSiCalFieldExtractor";
5
6   fields = (
7     {
8       columnName = uid;
9       sqlType    = "VARCHAR(256)";
10       allowsNull = NO;
11     },
12     {
13       columnName = startdate;
14       sqlType    = "INT";
15       allowsNull = NO;
16     },
17     {
18       columnName = enddate;
19       sqlType    = "INT";
20       allowsNull = NO;
21     },
22     {
23       columnName = cylceenddate;
24       sqlType    = "INT";
25       allowsNull = YES;
26     },
27     {
28       columnName = title;
29       sqlType    = "VARCHAR(1000)";
30       allowsNull = NO;
31     },
32     {
33       columnName = participants;
34       sqlType    = "VARCHAR(1000000)";
35       allowsNull = NO;
36     },
37     {
38       columnName = isallday;
39       sqlType    = "INT";
40       allowsNull = YES;
41     },
42     {
43       columnName = iscycle;
44       sqlType    = "INT";
45       allowsNull = YES;
46     },
47     {
48       columnName = cycleinfo;
49       sqlType    = "VARCHAR(1000)";
50       allowsNull = YES;
51     },
52     {
53       columnName = ispublic;
54       sqlType    = "INT";
55       allowsNull = NO;
56     },
57     {
58       columnName = isopaque;
59       sqlType    = "INT";
60       allowsNull = YES;
61     },
62     {
63       columnName = status;
64       sqlType    = "INT";
65       allowsNull = NO;
66     },
67     {
68       columnName = location;
69       sqlType    = "VARCHAR(256)";
70       allowsNull = YES;
71     },
72     {
73       columnName = orgmail;
74       sqlType    = "VARCHAR(256)";
75       allowsNull = YES;
76     },
77     {
78       columnName = partmails;
79       sqlType    = "VARCHAR(100000)";
80       allowsNull = NO;
81     },
82     {
83       columnName = sequence;
84       sqlType    = "INT";
85       allowsNull = YES;
86     },
87   );
88 }