CRM-14181, more clean and fixes to support callback
[civicrm-core.git] / xml / schema / Contact / SubscriptionHistory.xml
CommitLineData
6a488035
TO
1<?xml version="1.0" encoding="iso-8859-1" ?>
2
3<table>
4 <base>CRM/Contact</base>
5 <class>SubscriptionHistory</class>
6 <name>civicrm_subscription_history</name>
7 <comment>History information of subscribe/unsubscribe actions</comment>
8 <add>1.1</add>
9 <log>true</log>
10 <field>
11 <name>id</name>
12 <type>int unsigned</type>
13 <required>true</required>
14 <comment>Internal Id</comment>
15 <add>1.1</add>
16 </field>
17 <primaryKey>
18 <name>id</name>
19 <autoincrement>true</autoincrement>
20 </primaryKey>
21 <field>
22 <name>contact_id</name>
23 <type>int unsigned</type>
24 <required>true</required>
25 <comment>Contact Id</comment>
26 <add>1.1</add>
27 </field>
28 <foreignKey>
29 <name>contact_id</name>
30 <table>civicrm_contact</table>
31 <key>id</key>
32 <add>1.1</add>
33 <onDelete>CASCADE</onDelete>
34 </foreignKey>
35 <field>
29494eef
AS
36 <name>group_id</name>
37 <type>int unsigned</type>
38 <comment>Group Id</comment>
39 <add>1.1</add>
40 <pseudoconstant>
41 <table>civicrm_group</table>
42 <keyColumn>id</keyColumn>
43 <labelColumn>title</labelColumn>
44 </pseudoconstant>
614d72ec 45 <html>
e0991796 46 <type>Select</type>
614d72ec 47 </html>
6a488035
TO
48 </field>
49 <foreignKey>
50 <name>group_id</name>
51 <table>civicrm_group</table>
52 <key>id</key>
53 <add>1.1</add>
54 <onDelete>CASCADE</onDelete>
55 </foreignKey>
56 <field>
57 <name>date</name>
58 <type>datetime</type>
59 <required>true</required>
60 <comment>Date of the (un)subscription</comment>
61 <add>1.1</add>
62 </field>
63 <field>
64 <name>method</name>
dc73c80d 65 <type>varchar</type>
66 <length>8</length>
6a488035 67 <comment>How the (un)subscription was triggered</comment>
f80ce889 68 <pseudoconstant>
93bfa565 69 <callback>CRM_Core_SelectValues::getSubscriptionHistoryMethods</callback>
f80ce889 70 </pseudoconstant>
6a488035 71 <add>1.1</add>
614d72ec 72 <html>
73 <type>Select</type>
74 </html>
6a488035
TO
75 </field>
76 <field>
77 <name>status</name>
dc73c80d 78 <type>varchar</type>
79 <length>8</length>
6a488035 80 <comment>The state of the contact within the group</comment>
f80ce889 81 <pseudoconstant>
93bfa565 82 <callback>CRM_Core_SelectValues::groupContactStatus</callback>
f80ce889 83 </pseudoconstant>
6a488035
TO
84 <add>1.1</add>
85 </field>
86 <field>
87 <name>tracking</name>
88 <type>varchar</type>
89 <length>255</length>
90 <comment>IP address or other tracking info</comment>
91 <add>1.1</add>
92 </field>
93</table>