Merge pull request #14269 from eileenmcnaughton/refund_up
[civicrm-core.git] / xml / schema / Core / Component.xml
1 <?xml version="1.0" encoding="iso-8859-1" ?>
2
3 <table>
4 <base>CRM/Core</base>
5 <class>Component</class>
6 <name>civicrm_component</name>
7 <add>2.0</add>
8 <field>
9 <name>id</name>
10 <title>Component ID</title>
11 <type>int unsigned</type>
12 <required>true</required>
13 <comment>Component ID</comment>
14 <add>2.0</add>
15 </field>
16 <primaryKey>
17 <name>id</name>
18 <autoincrement>true</autoincrement>
19 </primaryKey>
20 <field>
21 <name>name</name>
22 <title>Component name</title>
23 <type>varchar</type>
24 <required>true</required>
25 <length>64</length>
26 <comment>Name of the component.</comment>
27 <add>2.0</add>
28 </field>
29 <field>
30 <name>namespace</name>
31 <title>Namespace reserved for component.</title>
32 <type>varchar</type>
33 <length>128</length>
34 <comment>Path to components main directory in a form of a class namespace.</comment>
35 <add>2.0</add>
36 </field>
37 </table>