Merge pull request #14322 from AlainBenbassat/5.14
[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 <html>
37 <type>Text</type>
38 </html>
39 <add>3.0</add>
40 <localizable>true</localizable>
41 </field>
42 <field>
43 <name>name_b_a</name>
44 <type>varchar</type>
45 <title>Relationship Type Name B to A</title>
46 <length>64</length>
47 <comment>Optional name for relationship of contact_b to contact_a.</comment>
48 <add>1.1</add>
49 </field>
50 <field>
51 <name>label_b_a</name>
52 <type>varchar</type>
53 <title>Relationship Type Label B to A</title>
54 <length>64</length>
55 <comment>Optional label for relationship of contact_b to contact_a.</comment>
56 <html>
57 <type>Text</type>
58 </html>
59 <add>3.0</add>
60 <localizable>true</localizable>
61 </field>
62 <field>
63 <name>description</name>
64 <type>varchar</type>
65 <title>Relationship Description</title>
66 <length>255</length>
67 <comment>Optional verbose description of the relationship type.</comment>
68 <add>1.1</add>
69 <html>
70 <type>Text</type>
71 </html>
72 <localizable>true</localizable>
73 </field>
74 <field>
75 <name>contact_type_a</name>
76 <title>Contact Type for Contact A</title>
77 <type>varchar</type>
78 <length>12</length>
79 <comment>If defined, contact_a in a relationship of this type must be a specific contact_type.</comment>
80 <pseudoconstant>
81 <table>civicrm_contact_type</table>
82 <keyColumn>name</keyColumn>
83 <labelColumn>label</labelColumn>
84 <condition>parent_id IS NULL</condition>
85 </pseudoconstant>
86 <add>1.1</add>
87 <html>
88 <type>Select</type>
89 </html>
90 </field>
91 <field>
92 <name>contact_type_b</name>
93 <title>Contact Type for Contact B</title>
94 <type>varchar</type>
95 <length>12</length>
96 <comment>If defined, contact_b in a relationship of this type must be a specific contact_type.</comment>
97 <pseudoconstant>
98 <table>civicrm_contact_type</table>
99 <keyColumn>name</keyColumn>
100 <labelColumn>label</labelColumn>
101 <condition>parent_id IS NULL</condition>
102 </pseudoconstant>
103 <add>1.1</add>
104 <html>
105 <type>Select</type>
106 </html>
107 </field>
108 <field>
109 <name>contact_sub_type_a</name>
110 <title>Contact Subtype A</title>
111 <type>varchar</type>
112 <length>64</length>
113 <comment>If defined, contact_sub_type_a in a relationship of this type must be a specific contact_sub_type.
114 </comment>
115 <add>3.1</add>
116 <html>
117 <type>Select</type>
118 </html>
119 <pseudoconstant>
120 <table>civicrm_contact_type</table>
121 <keyColumn>name</keyColumn>
122 <labelColumn>label</labelColumn>
123 <condition>parent_id IS NOT NULL</condition>
124 </pseudoconstant>
125 </field>
126 <field>
127 <name>contact_sub_type_b</name>
128 <title>Contact Subtype B</title>
129 <type>varchar</type>
130 <length>64</length>
131 <comment>If defined, contact_sub_type_b in a relationship of this type must be a specific contact_sub_type.
132 </comment>
133 <add>3.1</add>
134 <html>
135 <type>Select</type>
136 </html>
137 <pseudoconstant>
138 <table>civicrm_contact_type</table>
139 <keyColumn>name</keyColumn>
140 <labelColumn>label</labelColumn>
141 <condition>parent_id IS NOT NULL</condition>
142 </pseudoconstant>
143 </field>
144 <field>
145 <name>is_reserved</name>
146 <type>boolean</type>
147 <title>Relationship Type is Reserved</title>
148 <comment>Is this relationship type a predefined system type (can not be changed or de-activated)?</comment>
149 <html>
150 <type>CheckBox</type>
151 </html>
152 <add>1.1</add>
153 </field>
154 <field>
155 <name>is_active</name>
156 <title>Relationship Type is Active</title>
157 <type>boolean</type>
158 <default>1</default>
159 <comment>Is this relationship type currently active (i.e. can be used when creating or editing relationships)?
160 </comment>
161 <html>
162 <type>CheckBox</type>
163 </html>
164 <add>1.1</add>
165 </field>
166 <index>
167 <name>UI_name_a_b</name>
168 <fieldName>name_a_b</fieldName>
169 <unique>true</unique>
170 <add>2.1</add>
171 </index>
172 <index>
173 <name>UI_name_b_a</name>
174 <fieldName>name_b_a</fieldName>
175 <unique>true</unique>
176 <add>2.1</add>
177 </index>
178 </table>