NFC Fix DAO Style issues
[civicrm-core.git] / xml / schema / Event / Participant.xml
1 <?xml version="1.0" encoding="iso-8859-1" ?>
2
3 <table>
4 <base>CRM/Event</base>
5 <class>Participant</class>
6 <name>civicrm_participant</name>
7 <add>1.7</add>
8 <log>true</log>
9 <field>
10 <name>id</name>
11 <uniqueName>participant_id</uniqueName>
12 <title>Participant ID</title>
13 <type>int unsigned</type>
14 <required>true</required>
15 <comment>Participant Id</comment>
16 <import>true</import>
17 <headerPattern>/(^(participant(.)?)?id$)/i</headerPattern>
18 <add>1.7</add>
19 </field>
20 <primaryKey>
21 <name>id</name>
22 <autoincrement>true</autoincrement>
23 </primaryKey>
24 <field>
25 <name>contact_id</name>
26 <uniqueName>participant_contact_id</uniqueName>
27 <type>int unsigned</type>
28 <title>Contact ID</title>
29 <headerPattern>/contact(.?id)?/i</headerPattern>
30 <import>true</import>
31 <required>true</required>
32 <comment>FK to Contact ID</comment>
33 <add>1.7</add>
34 </field>
35 <foreignKey>
36 <name>contact_id</name>
37 <table>civicrm_contact</table>
38 <key>id</key>
39 <onDelete>CASCADE</onDelete>
40 </foreignKey>
41 <field>
42 <name>event_id</name>
43 <type>int unsigned</type>
44 <title>Event</title>
45 <import>true</import>
46 <headerPattern>/event id$/i</headerPattern>
47 <required>true</required>
48 <comment>FK to Event ID</comment>
49 <add>1.7</add>
50 </field>
51 <foreignKey>
52 <name>event_id</name>
53 <table>civicrm_event</table>
54 <key>id</key>
55 <onDelete>CASCADE</onDelete>
56 </foreignKey>
57 <field>
58 <name>status_id</name>
59 <uniqueName>participant_status_id</uniqueName>
60 <title>Participant Status</title>
61 <headerPattern>/(participant.)?(status)$/i</headerPattern>
62 <import>true</import>
63 <type>int unsigned</type>
64 <export>true</export>
65 <required>true</required>
66 <default>1</default>
67 <comment>Participant status ID. FK to civicrm_participant_status_type. Default of 1 should map to status = Registered.</comment>
68 <add>1.7</add>
69 <pseudoconstant>
70 <table>civicrm_participant_status_type</table>
71 <keyColumn>id</keyColumn>
72 <labelColumn>label</labelColumn>
73 </pseudoconstant>
74 <html>
75 <type>Select</type>
76 </html>
77 </field>
78 <foreignKey>
79 <name>status_id</name>
80 <table>civicrm_participant_status_type</table>
81 <key>id</key>
82 <add>3.0</add>
83 </foreignKey>
84 <index>
85 <name>index_status_id</name>
86 <fieldName>status_id</fieldName>
87 <add>1.8</add>
88 </index>
89 <field>
90 <name>role_id</name>
91 <uniqueName>participant_role_id</uniqueName>
92 <title>Participant Role</title>
93 <pseudoconstant>
94 <optionGroupName>participant_role</optionGroupName>
95 </pseudoconstant>
96 <html>
97 <type>Select</type>
98 <multiple>1</multiple>
99 </html>
100 <serialize>SEPARATOR_TRIMMED</serialize>
101 <headerPattern>/(participant.)?(role)$/i</headerPattern>
102 <import>true</import>
103 <type>varchar</type>
104 <length>128</length>
105 <export>true</export>
106 <default>NULL</default>
107 <comment>Participant role ID. Implicit FK to civicrm_option_value where option_group = participant_role.</comment>
108 <add>1.7</add>
109 </field>
110 <index>
111 <name>index_role_id</name>
112 <fieldName>role_id</fieldName>
113 <add>1.8</add>
114 </index>
115 <field>
116 <name>register_date</name>
117 <uniqueName>participant_register_date</uniqueName>
118 <title>Register date</title>
119 <headerPattern>/^(r(egister\s)?date)$/i</headerPattern>
120 <import>true</import>
121 <type>datetime</type>
122 <comment>When did contact register for event?</comment>
123 <add>1.7</add>
124 <html>
125 <type>Select Date</type>
126 <formatType>activityDateTime</formatType>
127 </html>
128 </field>
129 <field>
130 <name>source</name>
131 <uniqueName>participant_source</uniqueName>
132 <title>Participant Source</title>
133 <headerPattern>/(participant.)?(source)$/i</headerPattern>
134 <import>true</import>
135 <type>varchar</type>
136 <length>128</length>
137 <comment>Source of this event registration.</comment>
138 <html>
139 <type>Text</type>
140 </html>
141 <add>1.7</add>
142 </field>
143 <field>
144 <name>fee_level</name>
145 <uniqueName>participant_fee_level</uniqueName>
146 <title>Fee level</title>
147 <headerPattern>/^(f(ee\s)?level)$/i</headerPattern>
148 <type>text</type>
149 <import>true</import>
150 <serialize>SEPARATOR_BOOKEND</serialize>
151 <comment>Populate with the label (text) associated with a fee level for paid events with multiple levels. Note that
152 we store the label value and not the key</comment>
153 <add>1.7</add>
154 </field>
155 <field>
156 <name>is_test</name>
157 <uniqueName>participant_is_test</uniqueName>
158 <title>Test</title>
159 <type>boolean</type>
160 <default>0</default>
161 <import>true</import>
162 <add>1.7</add>
163 </field>
164 <field>
165 <name>is_pay_later</name>
166 <uniqueName>participant_is_pay_later</uniqueName>
167 <title>Is Pay Later</title>
168 <type>boolean</type>
169 <default>0</default>
170 <import>true</import>
171 <headerPattern>/(is.)?(pay(.)?later)$/i</headerPattern>
172 <add>2.1</add>
173 </field>
174
175 <field>
176 <name>fee_amount</name>
177 <uniqueName>participant_fee_amount</uniqueName>
178 <title>Fee Amount</title>
179 <type>decimal</type>
180 <import>true</import>
181 <headerPattern>/fee(.?am(ou)?nt)?/i</headerPattern>
182 <dataPattern>/^\d+(\.\d{2})?$/</dataPattern>
183 <comment>actual processor fee if known - may be 0.</comment>
184 <add>2.1</add>
185 </field>
186 <field>
187 <name>registered_by_id</name>
188 <uniqueName>participant_registered_by_id</uniqueName>
189 <type>int unsigned</type>
190 <title>Registered By ID</title>
191 <import>true</import>
192 <default>NULL</default>
193 <comment>FK to Participant ID</comment>
194 <add>2.1</add>
195 <export>true</export>
196 </field>
197 <foreignKey>
198 <name>registered_by_id</name>
199 <table>civicrm_participant</table>
200 <key>id</key>
201 <add>2.1</add>
202 <onDelete>SET NULL</onDelete>
203 </foreignKey>
204 <field>
205 <name>discount_id</name>
206 <uniqueName>participant_discount_id</uniqueName>
207 <type>int unsigned</type>
208 <title>Discount ID</title>
209 <default>NULL</default>
210 <comment>FK to Discount ID</comment>
211 <add>2.1</add>
212 </field>
213 <foreignKey>
214 <name>discount_id</name>
215 <table>civicrm_discount</table>
216 <key>id</key>
217 <add>2.1</add>
218 <onDelete>SET NULL</onDelete>
219 </foreignKey>
220 <field>
221 <name>fee_currency</name>
222 <uniqueName>participant_fee_currency</uniqueName>
223 <title>Fee Currency</title>
224 <type>varchar</type>
225 <length>3</length>
226 <default>NULL</default>
227 <import>true</import>
228 <headerPattern>/(fee)?.?cur(rency)?/i</headerPattern>
229 <dataPattern>/^[A-Z]{3}$/i</dataPattern>
230 <comment>3 character string, value derived from config setting.</comment>
231 <add>3.0</add>
232 <pseudoconstant>
233 <table>civicrm_currency</table>
234 <keyColumn>name</keyColumn>
235 <labelColumn>full_name</labelColumn>
236 <nameColumn>name</nameColumn>
237 </pseudoconstant>
238 <html>
239 <type>Select</type>
240 </html>
241 </field>
242 <field>
243 <name>campaign_id</name>
244 <uniqueName>participant_campaign_id</uniqueName>
245 <type>int unsigned</type>
246 <title>Campaign</title>
247 <import>true</import>
248 <comment>The campaign for which this participant has been registered.</comment>
249 <pseudoconstant>
250 <table>civicrm_campaign</table>
251 <keyColumn>id</keyColumn>
252 <labelColumn>title</labelColumn>
253 </pseudoconstant>
254 <add>3.4</add>
255 </field>
256 <foreignKey>
257 <name>campaign_id</name>
258 <table>civicrm_campaign</table>
259 <key>id</key>
260 <onDelete>SET NULL</onDelete>
261 </foreignKey>
262 <field>
263 <name>discount_amount</name>
264 <type>int unsigned</type>
265 <title>Discount Amount</title>
266 <comment>Discount Amount</comment>
267 <add>4.1</add>
268 </field>
269 <field>
270 <name>cart_id</name>
271 <type>int unsigned</type>
272 <title>Event Cart ID</title>
273 <comment>FK to civicrm_event_carts</comment>
274 <add>4.1</add>
275 </field>
276 <foreignKey>
277 <name>cart_id</name>
278 <table>civicrm_event_carts</table>
279 <key>id</key>
280 <onDelete>SET NULL</onDelete>
281 </foreignKey>
282 <field>
283 <name>must_wait</name>
284 <type>int</type>
285 <title>Must Wait on List</title>
286 <comment>On Waiting List</comment>
287 <add>4.1</add>
288 </field>
289 <field>
290 <name>transferred_to_contact_id</name>
291 <uniqueName>transferred_to_contact_id</uniqueName>
292 <type>int unsigned</type>
293 <default>NULL</default>
294 <title>Transferred to Contact ID</title>
295 <headerPattern>/transfer(.?id)?/i</headerPattern>
296 <import>true</import>
297 <comment>FK to Contact ID</comment>
298 <add>4.7</add>
299 </field>
300 <foreignKey>
301 <name>transferred_to_contact_id</name>
302 <table>civicrm_contact</table>
303 <key>id</key>
304 <onDelete>SET NULL</onDelete>
305 </foreignKey>
306 </table>