CRM-14955 - add custom tokens to greetings
[civicrm-core.git] / xml / schema / Contact / RelationshipType.xml
1 <?xml version="1.0" encoding="iso-8859-1" ?>
2
3 <table>
4 <base>CRM/Contact</base>
5 <class>RelationshipType</class>
6 <name>civicrm_relationship_type</name>
7 <comment>Relationship types s/b structured with contact_a as the 'subject/child' contact and contact_b as the 'object/parent' contact (e.g. Individual A is Employee of Org B).</comment>
8 <add>1.1</add>
9 <log>true</log>
10 <field>
11 <name>id</name>
12 <type>int unsigned</type>
13 <title>Relationship Type ID</title>
14 <required>true</required>
15 <comment>Primary key</comment>
16 <add>1.1</add>
17 </field>
18 <primaryKey>
19 <name>id</name>
20 <autoincrement>true</autoincrement>
21 </primaryKey>
22 <field>
23 <name>name_a_b</name>
24 <type>varchar</type>
25 <title>Relationship Type Name A to B</title>
26 <length>64</length>
27 <comment>name for relationship of contact_a to contact_b.</comment>
28 <add>1.1</add>
29 </field>
30 <field>
31 <name>label_a_b</name>
32 <type>varchar</type>
33 <title>Relationship Type Label A to B</title>
34 <length>64</length>
35 <comment>label for relationship of contact_a to contact_b.</comment>
36 <add>3.0</add>
37 </field>
38 <field>
39 <name>name_b_a</name>
40 <type>varchar</type>
41 <title>Relationship Type Name B to A</title>
42 <length>64</length>
43 <comment>Optional name for relationship of contact_b to contact_a.</comment>
44 <add>1.1</add>
45 </field>
46 <field>
47 <name>label_b_a</name>
48 <type>varchar</type>
49 <title>Relationship Type Label B to A</title>
50 <length>64</length>
51 <comment>Optional label for relationship of contact_b to contact_a.</comment>
52 <add>3.0</add>
53 </field>
54 <field>
55 <name>description</name>
56 <type>varchar</type>
57 <title>Relationship Description</title>
58 <length>255</length>
59 <comment>Optional verbose description of the relationship type.</comment>
60 <add>1.1</add>
61 </field>
62 <field>
63 <name>contact_type_a</name>
64 <title>Contact Type for Contact A</title>
65 <type>varchar</type>
66 <length>12</length>
67 <comment>If defined, contact_a in a relationship of this type must be a specific contact_type.</comment>
68 <pseudoconstant>
69 <callback>CRM_Contact_BAO_ContactType::getSelectElements</callback>
70 </pseudoconstant>
71 <add>1.1</add>
72 <html>
73 <type>Select</type>
74 </html>
75 </field>
76 <field>
77 <name>contact_type_b</name>
78 <title>Contact Type for Contact B</title>
79 <type>varchar</type>
80 <length>12</length>
81 <comment>If defined, contact_b in a relationship of this type must be a specific contact_type.</comment>
82 <pseudoconstant>
83 <callback>CRM_Contact_BAO_ContactType::getSelectElements</callback>
84 </pseudoconstant>
85 <add>1.1</add>
86 <html>
87 <type>Select</type>
88 </html>
89 </field>
90 <field>
91 <name>contact_sub_type_a</name>
92 <title>Contact Subtype A</title>
93 <type>varchar</type>
94 <length>64</length>
95 <comment>If defined, contact_sub_type_a in a relationship of this type must be a specific contact_sub_type.</comment>
96 <add>3.1</add>
97 <html>
98 <type>Select</type>
99 </html>
100 </field>
101 <field>
102 <name>contact_sub_type_b</name>
103 <title>Contact Subtype B</title>
104 <type>varchar</type>
105 <length>64</length>
106 <comment>If defined, contact_sub_type_b in a relationship of this type must be a specific contact_sub_type.</comment>
107 <add>3.1</add>
108 <html>
109 <type>Select</type>
110 </html>
111 </field>
112 <field>
113 <name>is_reserved</name>
114 <type>boolean</type>
115 <title>Relationship Type is Reserved</title>
116 <comment>Is this relationship type a predefined system type (can not be changed or de-activated)?</comment>
117 <add>1.1</add>
118 </field>
119 <field>
120 <name>is_active</name>
121 <title>Relationship Type is Active</title>
122 <type>boolean</type>
123 <default>1</default>
124 <comment>Is this relationship type currently active (i.e. can be used when creating or editing relationships)?</comment>
125 <add>1.1</add>
126 </field>
127 <index>
128 <name>UI_name_a_b</name>
129 <fieldName>name_a_b</fieldName>
130 <unique>true</unique>
131 <add>2.1</add>
132 </index>
133 <index>
134 <name>UI_name_b_a</name>
135 <fieldName>name_b_a</fieldName>
136 <unique>true</unique>
137 <add>2.1</add>
138 </index>
139 </table>