1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
eventsecttable.php
См. документацию.
1<?php
2namespace Bitrix\Calendar\Internals;
3
4use Bitrix\Main\ORM\Data\DataManager;
5use Bitrix\Main\ORM\Fields\IntegerField;
6use Bitrix\Main\ORM\Fields\StringField;
7
33
35{
41 public static function getTableName()
42 {
43 return 'b_calendar_event_sect';
44 }
45
51 public static function getMap()
52 {
53 return [
54 (new IntegerField('EVENT_ID'))
55 ->configurePrimary()
56 ,
57 (new IntegerField('SECT_ID'))
58 ->configurePrimary()
59 ,
60 (new StringField('REL'))
61 ->configureSize(10)
62 ,
63 ];
64 }
65}