mirror of
https://codeberg.org/artfulrobot/contactcats.git
synced 2025-06-25 05:08:04 +02:00
54 lines
1.2 KiB
XML
54 lines
1.2 KiB
XML
<?xml version="1.0" encoding="iso-8859-1" ?>
|
|
|
|
<table>
|
|
<base>CRM/Contactcats</base>
|
|
<class>ContactCategory</class>
|
|
<name>civicrm_contact_category</name>
|
|
<comment>Stores a category for each contact</comment>
|
|
<log>false</log>
|
|
|
|
<field>
|
|
<name>id</name>
|
|
<type>int unsigned</type>
|
|
<required>true</required>
|
|
<comment>Unique ID, corresponds to contact id</comment>
|
|
<html>
|
|
<type>EntityRef</type>
|
|
<label>Contact</label>
|
|
</html>
|
|
</field>
|
|
<primaryKey>
|
|
<name>id</name>
|
|
<autoincrement>true</autoincrement>
|
|
</primaryKey>
|
|
<foreignKey>
|
|
<name>id</name>
|
|
<table>civicrm_contact</table>
|
|
<key>id</key>
|
|
<onDelete>CASCADE</onDelete>
|
|
</foreignKey>
|
|
|
|
<field>
|
|
<name>category</name>
|
|
<type>int unsigned</type>
|
|
<required>true</required>
|
|
<default>0</default>
|
|
<pseudoconstant>
|
|
<optionGroupName>contact_categories</optionGroupName>
|
|
</pseudoconstant>
|
|
<html>
|
|
<type>Select</type>
|
|
</html>
|
|
</field>
|
|
|
|
<field>
|
|
<name>next_category</name>
|
|
<type>int unsigned</type>
|
|
<required>true</required>
|
|
<default>0</default>
|
|
<pseudoconstant>
|
|
<optionGroupName>contact_categories</optionGroupName>
|
|
</pseudoconstant>
|
|
</field>
|
|
|
|
</table>
|