Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
messageuuid.php
1<?php
2namespace Bitrix\Im\Model;
3
8
9
16class MessageUuidTable extends Main\Entity\DataManager
17{
23 public static function getTableName(): string
24 {
25 return 'b_im_message_uuid';
26 }
27
34 public static function getMap(): array
35 {
36 return [
37 new StringField(
38 'UUID',
39 [
40 'primary' => true,
41 'required' => true,
42 'size' => 36
43 ]
44 ),
45 new IntegerField('MESSAGE_ID'),
46 new DatetimeField(
47 'DATE_CREATE',
48 [
49 'required' => true,
50 ]
51 ),
52 ];
53 }
54}