CRM-13497 - getting there on main tables
[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 <type>enum</type>
65 <title>Contact Type for Contact A</title>
66 <values>Individual, Organization, Household</values>
67 <comment>If defined, contact_a in a relationship of this type must be a specific contact_type.</comment>
68 <add>1.1</add>
69 <html>
70 <type>Select</type>
71 </html>
72 </field>
73 <field>
74 <name>contact_type_b</name>
75 <type>enum</type>
76 <title>Contact Type for Contact B</title>
77 <values>Individual, Organization, Household</values>
78 <comment>If defined, contact_b in a relationship of this type must be a specific contact_type.</comment>
79 <add>1.1</add>
80 <html>
81 <type>Select</type>
82 </html>
83 </field>
84 <field>
85 <name>contact_sub_type_a</name>
86 <title>Contact Subtype A</title>
87 <type>varchar</type>
88 <length>64</length>
89 <comment>If defined, contact_sub_type_a in a relationship of this type must be a specific contact_sub_type.</comment>
90 <add>3.1</add>
91 <html>
92 <type>Multi-Select</type>
93 </html>
94 </field>
95 <field>
96 <name>contact_sub_type_b</name>
97 <title>Contact Subtype B</title>
98 <type>varchar</type>
99 <length>64</length>
100 <comment>If defined, contact_sub_type_b in a relationship of this type must be a specific contact_sub_type.</comment>
101 <add>3.1</add>
102 <html>
103 <type>Multi-Select</type>
104 </html>
105 </field>
106 <field>
107 <name>is_reserved</name>
108 <type>boolean</type>
109 <title>Relationship Type is Reserved</title>
110 <comment>Is this relationship type a predefined system type (can not be changed or de-activated)?</comment>
111 <add>1.1</add>
112 </field>
113 <field>
114 <name>is_active</name>
115 <title>Relationship Type is Active</title>
116 <type>boolean</type>
117 <default>1</default>
118 <comment>Is this relationship type currently active (i.e. can be used when creating or editing relationships)?</comment>
119 <add>1.1</add>
120 </field>
121 <index>
122 <name>UI_name_a_b</name>
123 <fieldName>name_a_b</fieldName>
124 <unique>true</unique>
125 <add>2.1</add>
126 </index>
127 <index>
128 <name>UI_name_b_a</name>
129 <fieldName>name_b_a</fieldName>
130 <unique>true</unique>
131 <add>2.1</add>
132 </index>
133 </table>