Merge pull request #15307 from seamuslee001/dev_core_1249
[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 <drop>5.20</drop>
9 <field>
10 <name>id</name>
11 <title>Persistent ID</title>
12 <type>int unsigned</type>
13 <required>true</required>
14 <comment>Persistent Record Id</comment>
15 <add>3.2</add>
16 </field>
17 <primaryKey>
18 <name>id</name>
19 <autoincrement>false</autoincrement>
20 </primaryKey>
21 <field>
22 <name>context</name>
23 <title>Context</title>
24 <type>varchar</type>
25 <length>255</length>
26 <comment>Context for which name data pair is to be stored</comment>
27 <required>true</required>
28 <add>3.2</add>
29 </field>
30 <field>
31 <name>name</name>
32 <title>Name</title>
33 <type>varchar</type>
34 <length>255</length>
35 <comment>Name of Context</comment>
36 <required>true</required>
37 <add>3.2</add>
38 </field>
39 <field>
40 <name>data</name>
41 <title>Data</title>
42 <type>longtext</type>
43 <comment>data associated with name</comment>
44 <add>3.2</add>
45 </field>
46 <field>
47 <name>is_config</name>
48 <title>Is Configuration?</title>
49 <type>boolean</type>
50 <default>0</default>
51 <comment>Config Settings</comment>
52 <required>true</required>
53 <add>3.2</add>
54 </field>
55 </table>