Merge pull request #19017 from eileenmcnaughton/remove_recur
[civicrm-core.git] / xml / schema / Event / Event.xml
1 <?xml version="1.0" encoding="iso-8859-1" ?>
2
3 <table>
4 <base>CRM/Event</base>
5 <class>Event</class>
6 <name>civicrm_event</name>
7 <add>1.7</add>
8 <log>true</log>
9 <icon>fa-calendar</icon>
10 <component>CiviEvent</component>
11 <paths>
12 <add>civicrm/event/add?reset=1</add>
13 <view>civicrm/event/info?reset=1&amp;id=[id]</view>
14 </paths>
15 <field>
16 <name>id</name>
17 <type>int unsigned</type>
18 <title>Event ID</title>
19 <required>true</required>
20 <comment>Event</comment>
21 <add>1.7</add>
22 </field>
23 <primaryKey>
24 <name>id</name>
25 <autoincrement>true</autoincrement>
26 </primaryKey>
27 <field>
28 <name>title</name>
29 <uniqueName>event_title</uniqueName>
30 <type>varchar</type>
31 <import>true</import>
32 <title>Event Title</title>
33 <headerPattern>/(event.)?title$/i</headerPattern>
34 <length>255</length>
35 <localizable>true</localizable>
36 <comment>Event Title (e.g. Fall Fundraiser Dinner)</comment>
37 <html>
38 <type>Text</type>
39 </html>
40 <add>1.7</add>
41 </field>
42 <field>
43 <name>summary</name>
44 <type>text</type>
45 <title>Event Summary</title>
46 <html>
47 <type>TextArea</type>
48 <rows>4</rows>
49 <cols>60</cols>
50 </html>
51 <localizable>true</localizable>
52 <comment>Brief summary of event. Text and html allowed. Displayed on Event Registration form and can be used on other CMS pages which need an event summary.</comment>
53 <add>1.7</add>
54 </field>
55 <field>
56 <name>description</name>
57 <type>text</type>
58 <uniqueName>event_description</uniqueName>
59 <title>Event Description</title>
60 <html>
61 <type>RichTextEditor</type>
62 <rows>8</rows>
63 <cols>60</cols>
64 </html>
65 <localizable>true</localizable>
66 <comment>Full description of event. Text and html allowed. Displayed on built-in Event Information screens.</comment>
67 <add>1.7</add>
68 </field>
69 <field>
70 <name>event_type_id</name>
71 <type>int unsigned</type>
72 <uniqueName>event_type_id</uniqueName>
73 <title>Event Type</title>
74 <default>0</default>
75 <pseudoconstant>
76 <optionGroupName>event_type</optionGroupName>
77 </pseudoconstant>
78 <html>
79 <type>Select</type>
80 </html>
81 <comment>Event Type ID.Implicit FK to civicrm_option_value where option_group = event_type.</comment>
82 <add>1.7</add>
83 </field>
84 <index>
85 <name>index_event_type_id</name>
86 <fieldName>event_type_id</fieldName>
87 <add>1.8</add>
88 </index>
89 <field>
90 <name>participant_listing_id</name>
91 <type>int unsigned</type>
92 <uniqueName>participant_listing_id</uniqueName>
93 <title>Participant Listing</title>
94 <default>NULL</default>
95 <pseudoconstant>
96 <optionGroupName>participant_listing</optionGroupName>
97 </pseudoconstant>
98 <comment>Should we expose the participant list? Implicit FK to civicrm_option_value where option_group = participant_listing.</comment>
99 <add>2.0</add>
100 <html>
101 <type>Select</type>
102 </html>
103 </field>
104 <index>
105 <name>index_participant_listing_id</name>
106 <fieldName>participant_listing_id</fieldName>
107 <add>2.0</add>
108 </index>
109 <field>
110 <name>is_public</name>
111 <type>boolean</type>
112 <title>Is Event Public</title>
113 <default>1</default>
114 <comment>Public events will be included in the iCal feeds. Access to private event information may be limited using ACLs.</comment>
115 <add>1.7</add>
116 <html>
117 <type>CheckBox</type>
118 </html>
119 </field>
120 <field>
121 <name>start_date</name>
122 <type>datetime</type>
123 <uniqueName>event_start_date</uniqueName>
124 <title>Event Start Date</title>
125 <headerPattern>/^start|(s(tart\s)?date)$/i</headerPattern>
126 <import>true</import>
127 <comment>Date and time that event starts.</comment>
128 <add>1.7</add>
129 <html>
130 <type>Select Date</type>
131 <formatType>activityDateTime</formatType>
132 </html>
133 </field>
134 <field>
135 <name>end_date</name>
136 <type>datetime</type>
137 <uniqueName>event_end_date</uniqueName>
138 <title>Event End Date</title>
139 <headerPattern>/^end|(e(nd\s)?date)$/i</headerPattern>
140 <import>true</import>
141 <comment>Date and time that event ends. May be NULL if no defined end date/time</comment>
142 <add>1.7</add>
143 <html>
144 <type>Select Date</type>
145 <formatType>activityDateTime</formatType>
146 </html>
147 </field>
148 <field>
149 <name>is_online_registration</name>
150 <type>boolean</type>
151 <title>Is Online Registration</title>
152 <default>0</default>
153 <comment>If true, include registration link on Event Info page.</comment>
154 <add>1.7</add>
155 <html>
156 <type>CheckBox</type>
157 </html>
158 </field>
159 <field>
160 <name>registration_link_text</name>
161 <type>varchar</type>
162 <title>Event Registration Link Text</title>
163 <length>255</length>
164 <localizable>true</localizable>
165 <comment>Text for link to Event Registration form which is displayed on Event Information screen when is_online_registration is true.</comment>
166 <add>1.7</add>
167 <html>
168 <type>Text</type>
169 </html>
170 </field>
171 <field>
172 <name>registration_start_date</name>
173 <type>datetime</type>
174 <comment>Date and time that online registration starts.</comment>
175 <add>1.8</add>
176 <html>
177 <type>Select Date</type>
178 <formatType>activityDateTime</formatType>
179 </html>
180 </field>
181 <field>
182 <name>registration_end_date</name>
183 <type>datetime</type>
184 <comment>Date and time that online registration ends.</comment>
185 <add>1.8</add>
186 <html>
187 <type>Select Date</type>
188 <formatType>activityDateTime</formatType>
189 </html>
190 </field>
191 <field>
192 <name>max_participants</name>
193 <type>int unsigned</type>
194 <title>Max Participants</title>
195 <default>NULL</default>
196 <comment>Maximum number of registered participants to allow. After max is reached, a custom Event Full message is displayed. If NULL, allow unlimited number of participants.</comment>
197 <add>1.7</add>
198 <html>
199 <type>Text</type>
200 </html>
201 </field>
202 <field>
203 <name>event_full_text</name>
204 <type>text</type>
205 <title>Event Information</title>
206 <html>
207 <type>TextArea</type>
208 <rows>4</rows>
209 <cols>60</cols>
210 </html>
211 <localizable>true</localizable>
212 <comment>Message to display on Event Information page and INSTEAD OF Event Registration form if maximum participants are signed up. Can include email address/info about getting on a waiting list, etc. Text and html allowed.</comment>
213 <add>1.7</add>
214 </field>
215 <field>
216 <name>is_monetary</name>
217 <title>Is this a PAID event?</title>
218 <type>boolean</type>
219 <default>0</default>
220 <comment>If true, one or more fee amounts must be set and a Payment Processor must be configured for Online Event Registration.</comment>
221 <add>1.7</add>
222 <html>
223 <type>CheckBox</type>
224 </html>
225 </field>
226 <field>
227 <name>financial_type_id</name>
228 <type>int unsigned</type>
229 <title>Financial Type</title>
230 <default>NULL</default>
231 <comment>Financial type assigned to paid event registrations for this event. Required if is_monetary is true.</comment>
232 <pseudoconstant>
233 <table>civicrm_financial_type</table>
234 <keyColumn>id</keyColumn>
235 <labelColumn>name</labelColumn>
236 </pseudoconstant>
237 <html>
238 <type>Select</type>
239 </html>
240 <add>4.3</add>
241 </field>
242 <field>
243 <name>payment_processor</name>
244 <type>varchar</type>
245 <length>128</length>
246 <serialize>SEPARATOR_TRIMMED</serialize>
247 <comment>Payment Processors configured for this Event (if is_monetary is true)</comment>
248 <pseudoconstant>
249 <table>civicrm_payment_processor</table>
250 <keyColumn>id</keyColumn>
251 <labelColumn>name</labelColumn>
252 </pseudoconstant>
253 <html>
254 <type>Select</type>
255 </html>
256 <add>1.8</add>
257 </field>
258 <field>
259 <name>is_map</name>
260 <title>Map Enabled</title>
261 <type>boolean</type>
262 <default>0</default>
263 <comment>Include a map block on the Event Information page when geocode info is available and a mapping provider has been specified?</comment>
264 <add>1.7</add>
265 <html>
266 <type>CheckBox</type>
267 </html>
268 </field>
269 <field>
270 <name>is_active</name>
271 <title>Is Active</title>
272 <type>boolean</type>
273 <default>0</default>
274 <comment>Is this Event enabled or disabled/cancelled?</comment>
275 <add>1.7</add>
276 <html>
277 <type>CheckBox</type>
278 </html>
279 </field>
280 <field>
281 <name>fee_label</name>
282 <type>varchar</type>
283 <import>true</import>
284 <title>Fee Label</title>
285 <headerPattern>/^fee|(f(ee\s)?label)$/i</headerPattern>
286 <length>255</length>
287 <localizable>true</localizable>
288 <html>
289 <type>Text</type>
290 </html>
291 <add>1.8</add>
292 </field>
293 <field>
294 <name>is_show_location</name>
295 <type>boolean</type>
296 <title>show location</title>
297 <default>1</default>
298 <comment>If true, show event location.</comment>
299 <add>1.7</add>
300 <html>
301 <type>CheckBox</type>
302 </html>
303 </field>
304 <field>
305 <name>loc_block_id</name>
306 <type>int unsigned</type>
307 <title>Location Block ID</title>
308 <comment>FK to Location Block ID</comment>
309 <add>2.0</add>
310 </field>
311 <foreignKey>
312 <name>loc_block_id</name>
313 <table>civicrm_loc_block</table>
314 <key>id</key>
315 <onDelete>SET NULL</onDelete>
316 <add>2.0</add>
317 </foreignKey>
318 <field>
319 <name>default_role_id</name>
320 <uniqueName>default_role_id</uniqueName>
321 <title>Default Role</title>
322 <import>true</import>
323 <type>int unsigned</type>
324 <default>1</default>
325 <pseudoconstant>
326 <optionGroupName>participant_role</optionGroupName>
327 </pseudoconstant>
328 <comment>Participant role ID. Implicit FK to civicrm_option_value where option_group = participant_role.</comment>
329 <add>2.0</add>
330 <html>
331 <type>Select</type>
332 </html>
333 </field>
334 <field>
335 <name>intro_text</name>
336 <type>text</type>
337 <html>
338 <type>RichTextEditor</type>
339 <rows>6</rows>
340 <cols>50</cols>
341 </html>
342 <title>Introductory Message</title>
343 <localizable>true</localizable>
344 <comment>Introductory message for Event Registration page. Text and html allowed. Displayed at the top of Event Registration form.</comment>
345 <add>1.7</add>
346 </field>
347 <field>
348 <name>footer_text</name>
349 <title>Footer Message</title>
350 <type>text</type>
351 <html>
352 <type>RichTextEditor</type>
353 <rows>6</rows>
354 <cols>50</cols>
355 </html>
356 <localizable>true</localizable>
357 <comment>Footer message for Event Registration page. Text and html allowed. Displayed at the bottom of Event Registration form.</comment>
358 <add>1.7</add>
359 </field>
360 <field>
361 <name>confirm_title</name>
362 <type>varchar</type>
363 <title>Confirmation Title</title>
364 <length>255</length>
365 <default>NULL</default>
366 <localizable>true</localizable>
367 <comment>Title for Confirmation page.</comment>
368 <html>
369 <type>Text</type>
370 </html>
371 <add>1.7</add>
372 </field>
373 <field>
374 <name>confirm_text</name>
375 <type>text</type>
376 <html>
377 <type>RichTextEditor</type>
378 <rows>6</rows>
379 <cols>50</cols>
380 </html>
381 <title>Confirm Text</title>
382 <localizable>true</localizable>
383 <comment>Introductory message for Event Registration page. Text and html allowed. Displayed at the top of Event Registration form.</comment>
384 <add>1.7</add>
385 </field>
386 <field>
387 <name>confirm_footer_text</name>
388 <type>text</type>
389 <title>Footer Text</title>
390 <html>
391 <type>RichTextEditor</type>
392 <rows>6</rows>
393 <cols>50</cols>
394 </html>
395 <localizable>true</localizable>
396 <comment>Footer message for Event Registration page. Text and html allowed. Displayed at the bottom of Event Registration form.</comment>
397 <add>1.7</add>
398 </field>
399 <field>
400 <name>is_email_confirm</name>
401 <type>boolean</type>
402 <title>Is confirm email</title>
403 <default>0</default>
404 <comment>If true, confirmation is automatically emailed to contact on successful registration.</comment>
405 <add>1.7</add>
406 <html>
407 <type>CheckBox</type>
408 </html>
409 </field>
410 <field>
411 <name>confirm_email_text</name>
412 <type>text</type>
413 <title>Confirmation Email Text</title>
414 <html>
415 <type>TextArea</type>
416 <rows>4</rows>
417 <cols>50</cols>
418 </html>
419 <localizable>true</localizable>
420 <comment>text to include above standard event info on confirmation email. emails are text-only, so do not allow html for now</comment>
421 <add>1.7</add>
422 </field>
423 <field>
424 <name>confirm_from_name</name>
425 <type>varchar</type>
426 <title>Confirm From Name</title>
427 <length>255</length>
428 <localizable>true</localizable>
429 <comment>FROM email name used for confirmation emails.</comment>
430 <add>1.7</add>
431 <html>
432 <type>Text</type>
433 </html>
434 </field>
435 <field>
436 <name>confirm_from_email</name>
437 <type>varchar</type>
438 <title>Confirm From Email</title>
439 <length>255</length>
440 <comment>FROM email address used for confirmation emails.</comment>
441 <add>1.7</add>
442 <html>
443 <type>Text</type>
444 </html>
445 </field>
446 <field>
447 <name>cc_confirm</name>
448 <type>varchar</type>
449 <length>255</length>
450 <comment>comma-separated list of email addresses to cc each time a confirmation is sent</comment>
451 <html>
452 <type>Text</type>
453 </html>
454 <add>1.7</add>
455 </field>
456 <field>
457 <name>bcc_confirm</name>
458 <type>varchar</type>
459 <length>255</length>
460 <comment>comma-separated list of email addresses to bcc each time a confirmation is sent</comment>
461 <html>
462 <type>Text</type>
463 </html>
464 <add>1.7</add>
465 </field>
466 <field>
467 <name>default_fee_id</name>
468 <type>int unsigned</type>
469 <title>Default Fee ID</title>
470 <comment>FK to civicrm_option_value.</comment>
471 <add>1.7</add>
472 </field>
473 <field>
474 <name>default_discount_fee_id</name>
475 <type>int unsigned</type>
476 <title>Default Discount Fee ID</title>
477 <comment>FK to civicrm_option_value.</comment>
478 <add>1.7</add>
479 </field>
480 <field>
481 <name>thankyou_title</name>
482 <type>varchar</type>
483 <title>ThankYou Title</title>
484 <length>255</length>
485 <default>NULL</default>
486 <localizable>true</localizable>
487 <comment>Title for ThankYou page.</comment>
488 <add>1.7</add>
489 <html>
490 <type>Text</type>
491 </html>
492 </field>
493 <field>
494 <name>thankyou_text</name>
495 <type>text</type>
496 <html>
497 <type>RichTextEditor</type>
498 <rows>6</rows>
499 <cols>50</cols>
500 </html>
501 <title>ThankYou Text</title>
502 <localizable>true</localizable>
503 <comment>ThankYou Text.</comment>
504 <add>1.7</add>
505 </field>
506 <field>
507 <name>thankyou_footer_text</name>
508 <type>text</type>
509 <title>Footer Text</title>
510 <html>
511 <type>RichTextEditor</type>
512 <rows>6</rows>
513 <cols>50</cols>
514 </html>
515 <localizable>true</localizable>
516 <comment>Footer message.</comment>
517 <add>1.7</add>
518 </field>
519 <field>
520 <name>is_pay_later</name>
521 <title>Pay Later Allowed</title>
522 <type>boolean</type>
523 <default>0</default>
524 <comment>if true - allows the user to send payment directly to the org later</comment>
525 <add>2.0</add>
526 <html>
527 <type>CheckBox</type>
528 </html>
529 </field>
530 <field>
531 <name>pay_later_text</name>
532 <title>Pay Later Text</title>
533 <type>text</type>
534 <localizable>true</localizable>
535 <comment>The text displayed to the user in the main form</comment>
536 <add>2.0</add>
537 <html>
538 <type>RichTextEditor</type>
539 </html>
540 </field>
541 <field>
542 <name>pay_later_receipt</name>
543 <title>Pay Later Receipt Text</title>
544 <type>text</type>
545 <localizable>true</localizable>
546 <comment>The receipt sent to the user instead of the normal receipt text</comment>
547 <add>2.0</add>
548 <html>
549 <type>Text</type>
550 </html>
551 </field>
552 <field>
553 <name>is_partial_payment</name>
554 <title>Partial Payments Enabled</title>
555 <type>boolean</type>
556 <default>0</default>
557 <comment>is partial payment enabled for this event</comment>
558 <add>4.3</add>
559 <html>
560 <type>CheckBox</type>
561 </html>
562 </field>
563 <field>
564 <name>initial_amount_label</name>
565 <title>Initial Amount Label</title>
566 <type>varchar</type>
567 <length>255</length>
568 <localizable>true</localizable>
569 <comment>Initial amount label for partial payment</comment>
570 <add>4.3</add>
571 <html>
572 <type>Text</type>
573 </html>
574 </field>
575 <field>
576 <name>initial_amount_help_text</name>
577 <title>Initial Amount Help Text</title>
578 <type>text</type>
579 <localizable>true</localizable>
580 <comment>Initial amount help text for partial payment</comment>
581 <add>4.3</add>
582 <html>
583 <type>Text</type>
584 </html>
585 </field>
586 <field>
587 <name>min_initial_amount</name>
588 <title>Minimum Initial Amount</title>
589 <type>decimal</type>
590 <comment>Minimum initial amount for partial payment</comment>
591 <add>4.3</add>
592 <html>
593 <type>Text</type>
594 </html>
595 </field>
596 <field>
597 <name>is_multiple_registrations</name>
598 <title>Allow Multiple Registrations</title>
599 <type>boolean</type>
600 <default>0</default>
601 <comment>if true - allows the user to register multiple participants for event</comment>
602 <add>2.1</add>
603 <html>
604 <type>CheckBox</type>
605 </html>
606 </field>
607 <field>
608 <name>max_additional_participants</name>
609 <type>int unsigned</type>
610 <title>Maximum number of additional participants per registration</title>
611 <default>0</default>
612 <comment>Maximum number of additional participants that can be registered on a single booking</comment>
613 <add>4.7</add>
614 </field>
615 <field>
616 <name>allow_same_participant_emails</name>
617 <type>boolean</type>
618 <title>Does Event allow multiple registrations from same email address?</title>
619 <default>0</default>
620 <comment>if true - allows the user to register multiple registrations from same email address.</comment>
621 <add>2.2</add>
622 <html>
623 <type>CheckBox</type>
624 </html>
625 </field>
626 <field>
627 <name>has_waitlist</name>
628 <title>Waitlist Enabled</title>
629 <type>boolean</type>
630 <comment>Whether the event has waitlist support.</comment>
631 <add>3.0</add>
632 <html>
633 <type>CheckBox</type>
634 </html>
635 </field>
636 <field>
637 <name>requires_approval</name>
638 <type>boolean</type>
639 <comment>Whether participants require approval before they can finish registering.</comment>
640 <add>3.0</add>
641 <html>
642 <type>CheckBox</type>
643 </html>
644 </field>
645 <field>
646 <name>expiration_time</name>
647 <type>int unsigned</type>
648 <comment>Expire pending but unconfirmed registrations after this many hours.</comment>
649 <add>3.0</add>
650 <html>
651 <type>Text</type>
652 </html>
653 </field>
654 <field>
655 <name>allow_selfcancelxfer</name>
656 <type>boolean</type>
657 <default>0</default>
658 <title>Allow Self-service Cancellation or Transfer</title>
659 <comment>Allow self service cancellation or transfer for event?</comment>
660 <add>4.7</add>
661 <html>
662 <type>CheckBox</type>
663 </html>
664 </field>
665 <field>
666 <name>selfcancelxfer_time</name>
667 <type>int</type>
668 <default>0</default>
669 <title>Self-service Cancellation or Transfer Time</title>
670 <comment>Number of hours prior to event start date to allow self-service cancellation or transfer.</comment>
671 <add>4.7</add>
672 <html>
673 <type>Text</type>
674 </html>
675 </field>
676 <field>
677 <name>waitlist_text</name>
678 <type>text</type>
679 <html>
680 <type>TextArea</type>
681 <rows>4</rows>
682 <cols>60</cols>
683 </html>
684 <localizable>true</localizable>
685 <comment>Text to display when the event is full, but participants can signup for a waitlist.</comment>
686 <add>3.0</add>
687 </field>
688 <field>
689 <name>approval_req_text</name>
690 <type>text</type>
691 <html>
692 <type>TextArea</type>
693 <rows>4</rows>
694 <cols>60</cols>
695 </html>
696 <localizable>true</localizable>
697 <comment>Text to display when the approval is required to complete registration for an event.</comment>
698 <add>3.0</add>
699 </field>
700 <field>
701 <name>is_template</name>
702 <title>Is an Event Template</title>
703 <type>boolean</type>
704 <default>0</default>
705 <required>true</required>
706 <comment>whether the event has template</comment>
707 <add>3.0</add>
708 <html>
709 <type>CheckBox</type>
710 </html>
711 </field>
712 <field>
713 <name>template_title</name>
714 <uniqueName>template_title</uniqueName>
715 <type>varchar</type>
716 <import>true</import>
717 <title>Event Template Title</title>
718 <headerPattern>/(template.)?title$/i</headerPattern>
719 <length>255</length>
720 <localizable>true</localizable>
721 <comment>Event Template Title</comment>
722 <html>
723 <type>Text</type>
724 </html>
725 <add>3.0</add>
726 </field>
727 <field>
728 <name>created_id</name>
729 <type>int unsigned</type>
730 <title>Created By Contact ID</title>
731 <comment>FK to civicrm_contact, who created this event</comment>
732 <add>3.0</add>
733 </field>
734 <foreignKey>
735 <name>created_id</name>
736 <table>civicrm_contact</table>
737 <key>id</key>
738 <add>3.0</add>
739 <onDelete>SET NULL</onDelete>
740 </foreignKey>
741 <field>
742 <name>created_date</name>
743 <type>datetime</type>
744 <title>Event Created Date</title>
745 <comment>Date and time that event was created.</comment>
746 <add>3.0</add>
747 </field>
748 <field>
749 <name>currency</name>
750 <type>varchar</type>
751 <length>3</length>
752 <import>true</import>
753 <headerPattern>/cur(rency)?/i</headerPattern>
754 <dataPattern>/^[A-Z]{3}$/i</dataPattern>
755 <comment>3 character string, value from config setting or input via user.</comment>
756 <add>3.3</add>
757 <pseudoconstant>
758 <table>civicrm_currency</table>
759 <keyColumn>name</keyColumn>
760 <labelColumn>full_name</labelColumn>
761 <nameColumn>name</nameColumn>
762 <abbrColumn>symbol</abbrColumn>
763 </pseudoconstant>
764 <html>
765 <type>Select</type>
766 </html>
767 </field>
768 <field>
769 <name>campaign_id</name>
770 <type>int unsigned</type>
771 <title>Campaign</title>
772 <comment>The campaign for which this event has been created.</comment>
773 <pseudoconstant>
774 <table>civicrm_campaign</table>
775 <keyColumn>id</keyColumn>
776 <labelColumn>title</labelColumn>
777 </pseudoconstant>
778 <add>3.4</add>
779 <html>
780 <type>EntityRef</type>
781 </html>
782 </field>
783 <foreignKey>
784 <name>campaign_id</name>
785 <table>civicrm_campaign</table>
786 <key>id</key>
787 <onDelete>SET NULL</onDelete>
788 </foreignKey>
789 <field>
790 <name>is_share</name>
791 <title>Is shared through social media</title>
792 <type>boolean</type>
793 <default>1</default>
794 <comment>Can people share the event through social media?</comment>
795 <add>4.1</add>
796 <html>
797 <type>CheckBox</type>
798 </html>
799 </field>
800 <field>
801 <name>is_confirm_enabled</name>
802 <title>Is the booking confirmation screen enabled?</title>
803 <type>boolean</type>
804 <default>1</default>
805 <comment>If false, the event booking confirmation screen gets skipped</comment>
806 <add>4.5</add>
807 <html>
808 <type>CheckBox</type>
809 </html>
810 </field>
811 <field>
812 <name>parent_event_id</name>
813 <type>int unsigned</type>
814 <title>Parent Event ID</title>
815 <default>NULL</default>
816 <comment>Implicit FK to civicrm_event: parent event</comment>
817 <html>
818 <type>EntityRef</type>
819 </html>
820 <add>4.1</add>
821 </field>
822 <index>
823 <name>index_parent_event_id</name>
824 <fieldName>parent_event_id</fieldName>
825 <add>4.1</add>
826 </index>
827 <field>
828 <name>slot_label_id</name>
829 <type>int unsigned</type>
830 <title>Subevent Slot Label ID</title>
831 <default>NULL</default>
832 <comment>Subevent slot label. Implicit FK to civicrm_option_value where option_group = conference_slot.</comment>
833 <add>4.1</add>
834 <html>
835 <type>Select</type>
836 </html>
837 </field>
838 <field>
839 <name>dedupe_rule_group_id</name>
840 <type>int unsigned</type>
841 <title>Dedupe Rule</title>
842 <default>NULL</default>
843 <comment>Rule to use when matching registrations for this event</comment>
844 <pseudoconstant>
845 <table>civicrm_dedupe_rule_group</table>
846 <keyColumn>id</keyColumn>
847 <nameColumn>name</nameColumn>
848 <labelColumn>title</labelColumn>
849 </pseudoconstant>
850 <add>4.5</add>
851 <html>
852 <type>Select</type>
853 </html>
854 </field>
855 <foreignKey>
856 <name>dedupe_rule_group_id</name>
857 <table>civicrm_dedupe_rule_group</table>
858 <key>id</key>
859 <add>4.5</add>
860 </foreignKey>
861 <field>
862 <name>is_billing_required</name>
863 <title>Is billing block required</title>
864 <type>boolean</type>
865 <default>0</default>
866 <comment>if true than billing block is required this event</comment>
867 <add>4.6</add>
868 <html>
869 <type>CheckBox</type>
870 </html>
871 </field>
872 </table>