• Модуль: seo
  • Путь к файлу: ~/bitrix/modules/seo/lib/retargeting/internals/servicelog.php
  • Класс: BitrixSeoRetargetingInternalsServiceLogTable
  • Вызов: ServiceLogTable::getMap
static function getMap()
{
	$fieldsMap = array(
		'ID' => array(
			'data_type' => 'integer',
			'primary' => true,
			'autocomplete' => true,
		),
		'DATE_INSERT' => array(
			'data_type' => 'datetime',
			'default_value' => new DateTime()
		),
		'GROUP_ID' => array(
			'data_type' => 'string',
			'required' => true,
		),
		'TYPE' => array(
			'data_type' => 'string',
			'required' => true,
		),
		'CODE' => array(
			'data_type' => 'string',
		),
		'MESSAGE' => array(
			'data_type' => 'string',
			'required' => true,
		)
	);

	return $fieldsMap;
}