Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/yandex.market/lib/watcher/track/ |
Upload File : |
<?php namespace Yandex\Market\Watcher\Track; use Bitrix\Main; use Yandex\Market\Glossary; use Yandex\Market\Migration; use Yandex\Market\Reference\Storage; class StampTable extends Storage\Table { public static function getTableName() { return 'yamarket_watcher_stamp'; } public static function getMap() { return [ new Main\Entity\EnumField('SERVICE', [ 'primary' => true, 'required' => true, 'values' => [ Glossary::SERVICE_EXPORT, Glossary::SERVICE_SALES_BOOST, Glossary::SERVICE_CATALOG, ], ]), new Main\Entity\IntegerField('SETUP_ID', [ 'primary' => true, 'required' => true, ]), new Main\Entity\IntegerField('OFFSET', [ 'required' => true, 'default_value' => 0, ]), new Main\Entity\IntegerField('UNTIL', [ 'required' => true, 'default_value' => 0, ]), new Storage\Field\CanonicalDateTime('TIMESTAMP_X', [ 'required' => true, ]), ]; } public static function migrate(Main\DB\Connection $connection) { parent::migrate($connection); Migration\StorageFacade::updateFieldsLength($connection, static::getEntity(), [ 'SERVICE', ]); } }