Add html tag to all files in xml/schema
[civicrm-core.git] / xml / schema / ACL / Cache.xml
1 <?xml version="1.0" encoding="iso-8859-1" ?>
2
3 <table>
4 <base>CRM/ACL</base>
5 <class>ACLCache</class>
6 <name>civicrm_acl_cache</name>
7 <comment>Cache for acls and contacts</comment>
8 <add>1.6</add>
9 <field>
10 <name>id</name>
11 <title>Cache ID</title>
12 <type>int unsigned</type>
13 <required>true</required>
14 <comment>Unique table ID</comment>
15 <html>
16 <type>Number</type>
17 </html>
18 <add>1.6</add>
19 </field>
20 <primaryKey>
21 <name>id</name>
22 <autoincrement>true</autoincrement>
23 </primaryKey>
24 <field>
25 <name>contact_id</name>
26 <title>Cache Contact</title>
27 <type>int unsigned</type>
28 <comment>Foreign Key to Contact</comment>
29 <html>
30 <type>EntityRef</type>
31 </html>
32 <add>1.6</add>
33 </field>
34 <foreignKey>
35 <name>contact_id</name>
36 <table>civicrm_contact</table>
37 <key>id</key>
38 <add>1.6</add>
39 <drop>5.31</drop>
40 <onDelete>CASCADE</onDelete>
41 </foreignKey>
42 <index>
43 <name>index_contact_id</name>
44 <fieldName>contact_id</fieldName>
45 <add>5.31</add>
46 </index>
47 <field>
48 <name>acl_id</name>
49 <title>Cache ACL</title>
50 <type>int unsigned</type>
51 <required>true</required>
52 <comment>Foreign Key to ACL</comment>
53 <pseudoconstant>
54 <table>civicrm_acl</table>
55 <keyColumn>id</keyColumn>
56 <labelColumn>name</labelColumn>
57 </pseudoconstant>
58 <add>1.6</add>
59 </field>
60 <foreignKey>
61 <name>acl_id</name>
62 <table>civicrm_acl</table>
63 <key>id</key>
64 <add>1.6</add>
65 <onDelete>CASCADE</onDelete>
66 </foreignKey>
67 <index>
68 <name>index_acl_id</name>
69 <fieldName>acl_id</fieldName>
70 <add>1.6</add>
71 </index>
72 <field>
73 <name>modified_date</name>
74 <title>Cache Modified Date</title>
75 <type>timestamp</type>
76 <required>false</required>
77 <comment>When was this cache entry last modified</comment>
78 <add>1.6</add>
79 </field>
80 <index>
81 <name>index_modified_date</name>
82 <fieldName>modified_date</fieldName>
83 <add>5.22</add>
84 </index>
85 </table>