Merge pull request #23073 from colemanw/contactTypeIcon
[civicrm-core.git] / xml / schema / Core / Managed.xml
1 <?xml version="1.0" encoding="iso-8859-1" ?>
2
3 <table>
4 <base>CRM/Core</base>
5 <class>Managed</class>
6 <name>civicrm_managed</name>
7 <comment>List of declaratively managed objects</comment>
8 <add>4.2</add>
9 <log>false</log>
10 <field>
11 <name>id</name>
12 <title>Managed ID</title>
13 <type>int unsigned</type>
14 <required>true</required>
15 <comment>Surrogate Key</comment>
16 <html>
17 <type>Number</type>
18 </html>
19 <add>4.2</add>
20 </field>
21 <primaryKey>
22 <name>id</name>
23 <autoincrement>true</autoincrement>
24 </primaryKey>
25 <field>
26 <name>module</name>
27 <title>Module</title>
28 <type>varchar</type>
29 <length>127</length>
30 <required>true</required>
31 <comment>Name of the module which declared this object</comment>
32 <add>4.2</add>
33 </field>
34 <field>
35 <name>name</name>
36 <title>Name</title>
37 <type>varchar</type>
38 <length>127</length>
39 <comment>Symbolic name used by the module to identify the object</comment>
40 <add>4.2</add>
41 </field>
42 <index>
43 <name>UI_managed_module_name</name>
44 <fieldName>module</fieldName>
45 <fieldName>name</fieldName>
46 <add>4.2</add>
47 </index>
48 <field>
49 <name>entity_type</name>
50 <title>Entity Type</title>
51 <type>varchar</type>
52 <length>64</length>
53 <required>true</required>
54 <comment>API entity type</comment>
55 <add>4.2</add>
56 </field>
57 <field>
58 <name>entity_id</name>
59 <title>Entity ID</title>
60 <type>int unsigned</type>
61 <required>true</required>
62 <comment>Foreign key to the referenced item.</comment>
63 <add>4.2</add>
64 </field>
65 <field>
66 <name>cleanup</name>
67 <title>Cleanup Setting</title>
68 <type>varchar</type>
69 <length>32</length>
70 <comment>Policy on when to cleanup entity (always, never, unused)</comment>
71 <pseudoconstant>
72 <callback>CRM_Core_ManagedEntities::getCleanupOptions</callback>
73 </pseudoconstant>
74 <html>
75 <type>Select</type>
76 </html>
77 <add>4.5</add>
78 </field>
79 <field>
80 <name>entity_modified_date</name>
81 <type>timestamp</type>
82 <comment>When the managed entity was changed from its original settings.</comment>
83 <required>false</required>
84 <default>NULL</default>
85 <add>5.45</add>
86 </field>
87 <index>
88 <name>UI_managed_entity</name>
89 <fieldName>entity_type</fieldName>
90 <fieldName>entity_id</fieldName>
91 <add>4.2</add>
92 </index>
93 </table>