• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integrity/entity/duplicateentitymatchhash.php
  • Класс: Bitrix\Crm\Integrity\Entity\DuplicateEntityMatchHashTable
  • Вызов: DuplicateEntityMatchHashTable::getMap
static function getMap()
{
	return array(
		'ENTITY_ID' => array(
			'data_type' => 'integer',
			'primary' => true,
			'required' => true
		),
		'ENTITY_TYPE_ID' => array(
			'data_type' => 'integer',
			'primary' => true,
			'required' => true
		),
		'TYPE_ID' => array(
			'data_type' => 'integer',
			'primary' => true,
			'required' => true
		),
		'MATCH_HASH' => array(
			'data_type' => 'string',
			'primary' => true,
			'required' => true
		),
		'SCOPE' => array(
			'data_type' => 'string',
			'primary' => true,
			'required' => true
		),
		'IS_PRIMARY' => array(
			'data_type' => 'boolean',
			'values' => array('N', 'Y'),
		),
		'DATE_MODIFY' => array(
			'data_type' => 'datetime',
			'required' => false
		)
	);
}