Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
optionusertable.php
1<?php
2
3namespace Bitrix\Im\Model;
4
9
10
11
25{
26 use Data\Internal\MergeTrait;
32 public static function getTableName(): string
33 {
34 return 'b_im_option_user';
35 }
36
43 public static function getMap(): array
44 {
45 return [
46 'USER_ID' => (new IntegerField('USER_ID', [
47 'primary' => true,
48 ])),
49 'NOTIFY_GROUP_ID' => (new IntegerField('NOTIFY_GROUP_ID', [])),
50 'GENERAL_GROUP_ID' => (new IntegerField('GENERAL_GROUP_ID', [])),
51 ];
52 }
53}