]> err.no Git - scalable-opengroupware.org/blob - OGoContentStore/appointment.ocs
8e014e4a798fd839d85c5d55a33b450dc11b4f03
[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 = c_name;
9       sqlType    = "VARCHAR(256)";
10       allowsNull = NO;
11     },
12     {
13       columnName = uid;
14       sqlType    = "VARCHAR(256)";
15       allowsNull = NO;
16     },
17     {
18       columnName = startdate;
19       sqlType    = "INT";
20       allowsNull = YES;
21     },
22     {
23       columnName = enddate;
24       sqlType    = "INT";
25       allowsNull = YES;
26     },
27     {
28       columnName = cylceenddate;
29       sqlType    = "INT";
30       allowsNull = YES;
31     },
32     {
33       columnName = title;
34       sqlType    = "VARCHAR(1000)";
35       allowsNull = NO;
36     },
37     {
38       columnName = participants;
39       sqlType    = "VARCHAR(1000000)";
40       allowsNull = YES;
41     },
42     {
43       columnName = isallday;
44       sqlType    = "INT";
45       allowsNull = YES;
46     },
47     {
48       columnName = iscycle;
49       sqlType    = "INT";
50       allowsNull = YES;
51     },
52     {
53       columnName = cycleinfo;
54       sqlType    = "VARCHAR(1000)";
55       allowsNull = YES;
56     },
57     {
58       columnName = ispublic;
59       sqlType    = "INT";
60       allowsNull = NO;
61     },
62     {
63       columnName = isopaque;
64       sqlType    = "INT";
65       allowsNull = NO;
66     },
67     {
68       columnName = status;
69       sqlType    = "INT";
70       allowsNull = NO;
71     },
72     {
73       columnName = priority;
74       sqlType    = "INT";
75       allowsNull = YES;
76     },
77     {
78       columnName = location;
79       sqlType    = "VARCHAR(256)";
80       allowsNull = YES;
81     },
82     {
83       columnName = orgmail;
84       sqlType    = "VARCHAR(256)";
85       allowsNull = YES;
86     },
87     {
88       columnName = partmails;
89       sqlType    = "VARCHAR(100000)";
90       allowsNull = YES;
91     },
92     {
93       columnName = partstates;
94       sqlType    = "VARCHAR(256)";
95       allowsNull = YES;
96     },
97     {
98       columnName = sequence;
99       sqlType    = "INT";
100       allowsNull = YES;
101     },
102     {
103       columnName = component;
104       sqlType    = "VARCHAR(10)";
105       allowsNull = NO;
106     },
107   );
108 }