]> err.no Git - scalable-opengroupware.org/blob - OGoContentStore/appointment-oracle.ocs
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1218 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / OGoContentStore / appointment-oracle.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    = "VARCHAR2(256)";
10       allowsNull = NO;
11     },
12     {
13       columnName = c_uid;
14       sqlType    = "VARCHAR2(256)";
15       allowsNull = NO;
16     },
17     {
18       columnName = c_startdate;
19       sqlType    = "INTEGER";
20       allowsNull = YES;
21     },
22     {
23       columnName = c_enddate;
24       sqlType    = "INTEGER";
25       allowsNull = YES;
26     },
27     {
28       columnName = c_cycleenddate;
29       sqlType    = "INTEGER";
30       allowsNull = YES;
31     },
32     {
33       columnName = c_title;
34       sqlType    = "VARCHAR2(1000)";
35       allowsNull = NO;
36     },
37     {
38       columnName = c_participants;
39       sqlType    = "CLOB";
40       allowsNull = YES;
41     },
42     {
43       columnName = c_isallday;
44       sqlType    = "INTEGER";
45       allowsNull = YES;
46     },
47     {
48       columnName = c_iscycle;
49       sqlType    = "INTEGER";
50       allowsNull = YES;
51     },
52     {
53       columnName = c_cycleinfo;
54       sqlType    = "VARCHAR2(1000)";
55       allowsNull = YES;
56     },
57     {
58       columnName = c_classification;
59       sqlType    = "INTEGER";
60       allowsNull = NO;
61     },
62     {
63       columnName = c_isopaque;
64       sqlType    = "INTEGER";
65       allowsNull = NO;
66     },
67     {
68       columnName = c_status;
69       sqlType    = "INTEGER";
70       allowsNull = NO;
71     },
72     {
73       columnName = c_priority;
74       sqlType    = "INTEGER";
75       allowsNull = YES;
76     },
77     {
78       columnName = c_location;
79       sqlType    = "VARCHAR2(256)";
80       allowsNull = YES;
81     },
82     {
83       columnName = c_orgmail;
84       sqlType    = "VARCHAR2(256)";
85       allowsNull = YES;
86     },
87     {
88       columnName = c_partmails;
89       sqlType    = "CLOB";
90       allowsNull = YES;
91     },
92     {
93       columnName = c_partstates;
94       sqlType    = "VARCHAR2(256)";
95       allowsNull = YES;
96     },
97     {
98       columnName = c_sequence;
99       sqlType    = "INTEGER";
100       allowsNull = YES;
101     },
102     {
103       columnName = c_component;
104       sqlType    = "VARCHAR2(10)";
105       allowsNull = NO;
106     },
107   );
108 }