Merge pull request #19536 from totten/master-use-permlist
[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 <html>
16 <type>Number</type>
17 </html>
18 <add>3.2</add>
19 </field>
20 <primaryKey>
21 <name>id</name>
22 <autoincrement>false</autoincrement>
23 </primaryKey>
24 <field>
25 <name>context</name>
26 <title>Context</title>
27 <type>varchar</type>
28 <length>255</length>
29 <comment>Context for which name data pair is to be stored</comment>
30 <required>true</required>
31 <add>3.2</add>
32 </field>
33 <field>
34 <name>name</name>
35 <title>Name</title>
36 <type>varchar</type>
37 <length>255</length>
38 <comment>Name of Context</comment>
39 <required>true</required>
40 <add>3.2</add>
41 </field>
42 <field>
43 <name>data</name>
44 <title>Data</title>
45 <type>longtext</type>
46 <comment>data associated with name</comment>
47 <add>3.2</add>
48 </field>
49 <field>
50 <name>is_config</name>
51 <title>Is Configuration?</title>
52 <type>boolean</type>
53 <default>0</default>
54 <comment>Config Settings</comment>
55 <required>true</required>
56 <add>3.2</add>
57 </field>
58 </table>