Merge pull request #19086 from agileware/CIVICRM-1617
[civicrm-core.git] / xml / schema / Contact / ACLContactCache.xml
CommitLineData
6a488035
TO
1<?xml version="1.0" encoding="iso-8859-1" ?>
2
3<table>
4 <base>CRM/Contact</base>
5 <class>ACLContactCache</class>
6 <name>civicrm_acl_contact_cache</name>
7 <comment>Join table cache for contacts that a user has permission on.</comment>
8 <add>3.1</add>
9 <field>
8f069c03 10 <name>id</name>
fa6ace1a 11 <title>ACL Contact Cache ID</title>
8f069c03
EM
12 <type>int unsigned</type>
13 <required>true</required>
14 <comment>primary key</comment>
15 <add>3.1</add>
6a488035
TO
16 </field>
17 <primaryKey>
8f069c03
EM
18 <name>id</name>
19 <autoincrement>true</autoincrement>
6a488035
TO
20 </primaryKey>
21 <field>
8f069c03 22 <name>user_id</name>
f3ea5182 23 <title>Contact ID</title>
8f069c03
EM
24 <type>int unsigned</type>
25 <comment>FK to civicrm_contact (could be null for anon user)</comment>
26 <add>3.1</add>
6a488035 27 </field>
6a488035 28 <field>
8f069c03 29 <name>contact_id</name>
f3ea5182 30 <title>Contact ID</title>
8f069c03
EM
31 <type>int unsigned</type>
32 <required>true</required>
33 <comment>FK to civicrm_contact</comment>
34 <add>3.1</add>
6a488035
TO
35 </field>
36 <foreignKey>
8f069c03
EM
37 <name>contact_id</name>
38 <table>civicrm_contact</table>
39 <key>id</key>
40 <add>3.1</add>
d551d3d6 41 <drop>5.31</drop>
8f069c03 42 <onDelete>CASCADE</onDelete>
6a488035
TO
43 </foreignKey>
44 <field>
8f069c03 45 <name>operation</name>
f3ea5182 46 <title>Operation</title>
8f069c03
EM
47 <type>varchar</type>
48 <length>8</length>
49 <required>true</required>
50 <comment>What operation does this user have permission on?</comment>
51 <pseudoconstant>
52 <callback>CRM_ACL_BAO_ACL::operation</callback>
53 </pseudoconstant>
54 <add>1.6</add>
55 <html>
56 <type>Select</type>
57 </html>
6a488035
TO
58 </field>
59 <index>
60 <name>UI_user_contact_operation</name>
61 <fieldName>user_id</fieldName>
62 <fieldName>contact_id</fieldName>
63 <fieldName>operation</fieldName>
64 <unique>true</unique>
65 <add>3.1</add>
66 </index>
67</table>