Fix FiveFortyNine is_public to default to 0
[civicrm-core.git] / xml / schema / Core / Cache.xml
CommitLineData
6a488035
TO
1<?xml version="1.0" encoding="iso-8859-1" ?>
2
3<table>
4 <base>CRM/Core</base>
5 <class>Cache</class>
6 <name>civicrm_cache</name>
7 <comment>Table to cache items for civicrm components.</comment>
8 <add>2.1</add>
9 <field>
8f069c03 10 <name>id</name>
6692f42b 11 <title>Cache ID</title>
8f069c03
EM
12 <type>int unsigned</type>
13 <required>true</required>
6692f42b 14 <comment>Unique table ID</comment>
0481e12c
A
15 <html>
16 <type>Number</type>
17 </html>
8f069c03 18 <add>2.1</add>
6a488035
TO
19 </field>
20 <primaryKey>
8f069c03
EM
21 <name>id</name>
22 <autoincrement>true</autoincrement>
6a488035
TO
23 </primaryKey>
24 <field>
8f069c03 25 <name>group_name</name>
6692f42b 26 <title>Group Name</title>
8f069c03
EM
27 <type>varchar</type>
28 <length>32</length>
29 <required>true</required>
30 <comment>group name for cache element, useful in cleaning cache elements</comment>
31 <add>2.1</add>
6a488035
TO
32 </field>
33 <field>
8f069c03 34 <name>path</name>
6692f42b 35 <title>Path</title>
8f069c03
EM
36 <type>varchar</type>
37 <length>255</length>
38 <comment>Unique path name for cache element</comment>
39 <add>2.1</add>
6a488035 40 </field>
6a488035
TO
41 <index>
42 <name>UI_group_path_date</name>
43 <fieldName>group_name</fieldName>
44 <fieldName>path</fieldName>
45 <fieldName>created_date</fieldName>
46 <unique>true</unique>
47 <add>4.2</add>
48 </index>
49 <field>
50 <name>data</name>
6692f42b 51 <title>Data</title>
6a488035
TO
52 <type>longtext</type>
53 <comment>data associated with this path</comment>
54 <add>2.1</add>
55 </field>
56 <field>
8f785c9e 57 <name>component_id</name>
6692f42b 58 <title>Component ID</title>
8f785c9e
AS
59 <type>int unsigned</type>
60 <comment>Component that this menu item belongs to</comment>
61 <add>2.1</add>
62 <pseudoconstant>
63 <table>civicrm_component</table>
64 <keyColumn>id</keyColumn>
65 <labelColumn>name</labelColumn>
66 </pseudoconstant>
614d72ec 67 <html>
e0991796 68 <type>Select</type>
57e94608 69 <label>Component</label>
614d72ec 70 </html>
6a488035
TO
71 </field>
72 <foreignKey>
8f069c03
EM
73 <name>component_id</name>
74 <table>civicrm_component</table>
75 <key>id</key>
76 <add>2.1</add>
6a488035
TO
77 </foreignKey>
78 <field>
79 <name>created_date</name>
6692f42b 80 <title>Created Date</title>
4387c66f 81 <type>timestamp</type>
82 <default>CURRENT_TIMESTAMP</default>
6a488035
TO
83 <comment>When was the cache item created</comment>
84 <add>2.1</add>
85 </field>
86 <field>
87 <name>expired_date</name>
6692f42b 88 <title>Expired Date</title>
4387c66f 89 <type>timestamp</type>
90 <default>NULL</default>
91 <required>false</required>
6a488035
TO
92 <comment>When should the cache item expire</comment>
93 <add>2.1</add>
94 </field>
95</table>