Merge pull request #7555 from colemanw/breadcrumb
[civicrm-core.git] / xml / schema / Core / Persistent.xml
1 <?xml version="1.0" encoding="iso-8859-1" ?>
2 <table>
3 <base>CRM/Core</base>
4 <class>Persistent</class>
5 <name>civicrm_persistent</name>
6 <comment>DB Template Customization strings</comment>
7 <add>3.2</add>
8 <field>
9 <name>id</name>
10 <title>Persistent ID</title>
11 <type>int unsigned</type>
12 <required>true</required>
13 <comment>Persistent Record Id</comment>
14 <add>3.2</add>
15 </field>
16 <primaryKey>
17 <name>id</name>
18 <autoincrement>false</autoincrement>
19 </primaryKey>
20 <field>
21 <name>context</name>
22 <title>Context</title>
23 <type>varchar</type>
24 <length>255</length>
25 <comment>Context for which name data pair is to be stored</comment>
26 <required>true</required>
27 <add>3.2</add>
28 </field>
29 <field>
30 <name>name</name>
31 <title>Name</title>
32 <type>varchar</type>
33 <length>255</length>
34 <comment>Name of Context</comment>
35 <required>true</required>
36 <add>3.2</add>
37 </field>
38 <field>
39 <name>data</name>
40 <title>Data</title>
41 <type>longtext</type>
42 <comment>data associated with name</comment>
43 <add>3.2</add>
44 </field>
45 <field>
46 <name>is_config</name>
47 <title>Is Configuration?</title>
48 <type>boolean</type>
49 <default>0</default>
50 <comment>Config Settings</comment>
51 <required>true</required>
52 <add>3.2</add>
53 </field>
54 </table>