Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
eventsecttable.php
1<?php
3
7
22{
28 public static function getTableName()
29 {
30 return 'b_calendar_event_sect';
31 }
32
38 public static function getMap()
39 {
40 return [
41 (new IntegerField('EVENT_ID'))
42 ->configurePrimary()
43 ,
44 (new IntegerField('SECT_ID'))
45 ->configurePrimary()
46 ,
47 (new StringField('REL'))
48 ->configureSize(10)
49 ,
50 ];
51 }
52}