Your IP : 3.142.174.100
<?php
namespace Bitrix\Conversion\Internals;
use Bitrix\Main\Entity;
/** @internal */
class ContextAttributeTable extends Entity\DataManager
{
public static function getTableName()
{
return 'b_conv_context_attribute';
}
public static function getMap()
{
return array(
new Entity\IntegerField('CONTEXT_ID', array('primary' => true)),
new Entity\StringField ('NAME' , array('primary' => true, 'size' => 30)),
new Entity\StringField ('VALUE' , array('primary' => true, 'size' => 30)),
new Entity\ReferenceField('CONTEXT', 'ContextTable',
array('=this.CONTEXT_ID' => 'ref.ID'),
array('join_type' => 'INNER')
),
);
}
public static function getFilePath()
{
return __FILE__;
}
}