]> err.no Git - scalable-opengroupware.org/blob - OGoContentStore/appointment.ocs
initial sync
[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 = YES;
16     },
17     {
18       columnName = enddate;
19       sqlType    = "INT";
20       allowsNull = YES;
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 = YES;
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 = NO;
61     },
62     {
63       columnName = status;
64       sqlType    = "INT";
65       allowsNull = NO;
66     },
67     {
68       columnName = priority;
69       sqlType    = "INT";
70       allowsNull = YES;
71     },
72     {
73       columnName = location;
74       sqlType    = "VARCHAR(256)";
75       allowsNull = YES;
76     },
77     {
78       columnName = orgmail;
79       sqlType    = "VARCHAR(256)";
80       allowsNull = YES;
81     },
82     {
83       columnName = partmails;
84       sqlType    = "VARCHAR(100000)";
85       allowsNull = YES;
86     },
87     {
88       columnName = partstates;
89       sqlType    = "VARCHAR(256)";
90       allowsNull = YES;
91     },
92     {
93       columnName = sequence;
94       sqlType    = "INT";
95       allowsNull = YES;
96     },
97     {
98       columnName = component;
99       sqlType    = "VARCHAR(10)";
100       allowsNull = NO;
101     },
102   );
103 }