Rewrite jquery.dashboard.js as Angular app
[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 <add>1.6</add>
16 </field>
17 <primaryKey>
18 <name>id</name>
19 <autoincrement>true</autoincrement>
20 </primaryKey>
21 <field>
22 <name>contact_id</name>
23 <title>Cache Contact</title>
24 <type>int unsigned</type>
25 <comment>Foreign Key to Contact</comment>
26 <html>
27 <type>EntityRef</type>
28 </html>
29 <add>1.6</add>
30 </field>
31 <foreignKey>
32 <name>contact_id</name>
33 <table>civicrm_contact</table>
34 <key>id</key>
35 <add>1.6</add>
36 <drop>5.31</drop>
37 <onDelete>CASCADE</onDelete>
38 </foreignKey>
39 <index>
40 <name>index_contact_id</name>
41 <fieldName>contact_id</fieldName>
42 <add>5.31</add>
43 </index>
44 <field>
45 <name>acl_id</name>
46 <title>Cache ACL</title>
47 <type>int unsigned</type>
48 <required>true</required>
49 <comment>Foreign Key to ACL</comment>
50 <pseudoconstant>
51 <table>civicrm_acl</table>
52 <keyColumn>id</keyColumn>
53 <labelColumn>name</labelColumn>
54 </pseudoconstant>
55 <add>1.6</add>
56 </field>
57 <foreignKey>
58 <name>acl_id</name>
59 <table>civicrm_acl</table>
60 <key>id</key>
61 <add>1.6</add>
62 <onDelete>CASCADE</onDelete>
63 </foreignKey>
64 <index>
65 <name>index_acl_id</name>
66 <fieldName>acl_id</fieldName>
67 <add>1.6</add>
68 </index>
69 <field>
70 <name>modified_date</name>
71 <title>Cache Modified Date</title>
72 <type>timestamp</type>
73 <required>false</required>
74 <comment>When was this cache entry last modified</comment>
75 <add>1.6</add>
76 </field>
77 <index>
78 <name>index_modified_date</name>
79 <fieldName>modified_date</fieldName>
80 <add>5.22</add>
81 </index>
82 </table>