commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / 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 <table>civicrm_contact_type</table>
70 <keyColumn>name</keyColumn>
71 <labelColumn>label</labelColumn>
72 <condition>parent_id IS NULL</condition>
73 </pseudoconstant>
74 <add>1.1</add>
75 <html>
76 <type>Select</type>
77 </html>
78 </field>
79 <field>
80 <name>contact_type_b</name>
81 <title>Contact Type for Contact B</title>
82 <type>varchar</type>
83 <length>12</length>
84 <comment>If defined, contact_b in a relationship of this type must be a specific contact_type.</comment>
85 <pseudoconstant>
86 <table>civicrm_contact_type</table>
87 <keyColumn>name</keyColumn>
88 <labelColumn>label</labelColumn>
89 <condition>parent_id IS NULL</condition>
90 </pseudoconstant>
91 <add>1.1</add>
92 <html>
93 <type>Select</type>
94 </html>
95 </field>
96 <field>
97 <name>contact_sub_type_a</name>
98 <title>Contact Subtype A</title>
99 <type>varchar</type>
100 <length>64</length>
101 <comment>If defined, contact_sub_type_a in a relationship of this type must be a specific contact_sub_type.
102 </comment>
103 <add>3.1</add>
104 <html>
105 <type>Select</type>
106 </html>
107 <pseudoconstant>
108 <table>civicrm_contact_type</table>
109 <keyColumn>name</keyColumn>
110 <labelColumn>label</labelColumn>
111 <condition>parent_id IS NOT NULL</condition>
112 </pseudoconstant>
113 </field>
114 <field>
115 <name>contact_sub_type_b</name>
116 <title>Contact Subtype B</title>
117 <type>varchar</type>
118 <length>64</length>
119 <comment>If defined, contact_sub_type_b in a relationship of this type must be a specific contact_sub_type.
120 </comment>
121 <add>3.1</add>
122 <html>
123 <type>Select</type>
124 </html>
125 <pseudoconstant>
126 <table>civicrm_contact_type</table>
127 <keyColumn>name</keyColumn>
128 <labelColumn>label</labelColumn>
129 <condition>parent_id IS NOT NULL</condition>
130 </pseudoconstant>
131 </field>
132 <field>
133 <name>is_reserved</name>
134 <type>boolean</type>
135 <title>Relationship Type is Reserved</title>
136 <comment>Is this relationship type a predefined system type (can not be changed or de-activated)?</comment>
137 <add>1.1</add>
138 </field>
139 <field>
140 <name>is_active</name>
141 <title>Relationship Type is Active</title>
142 <type>boolean</type>
143 <default>1</default>
144 <comment>Is this relationship type currently active (i.e. can be used when creating or editing relationships)?
145 </comment>
146 <add>1.1</add>
147 </field>
148 <index>
149 <name>UI_name_a_b</name>
150 <fieldName>name_a_b</fieldName>
151 <unique>true</unique>
152 <add>2.1</add>
153 </index>
154 <index>
155 <name>UI_name_b_a</name>
156 <fieldName>name_b_a</fieldName>
157 <unique>true</unique>
158 <add>2.1</add>
159 </index>
160 </table>