• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Relation/EntityRelationTable.php
  • Класс: Bitrix\Crm\Relation\EntityRelationTable
  • Вызов: EntityRelationTable::getMap
static function getMap(): array
{
	return [
		(new IntegerField('SRC_ENTITY_TYPE_ID'))
			->configurePrimary(),
		(new IntegerField('SRC_ENTITY_ID'))
			->configurePrimary(),
		(new IntegerField('DST_ENTITY_TYPE_ID'))
			->configurePrimary(),
		(new IntegerField('DST_ENTITY_ID'))
			->configurePrimary(),
		(new EnumField('RELATION_TYPE'))
			->configureRequired()
			->configureValues(RelationType::getAll())
			->configureDefaultValue(RelationType::BINDING),
	];
}