1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
messagedisappearing.php
См. документацию.
1<?php
2namespace Bitrix\Im\Model;
3
4use Bitrix\Main\ORM\Data\DataManager;
5use Bitrix\Main\ORM\Fields\DatetimeField;
6use Bitrix\Main\ORM\Fields\IntegerField;
7use Bitrix\Main\Type\DateTime;
8
26{
27 public static function getTableName()
28 {
29 return 'b_im_message_disappearing';
30 }
31
37 public static function getMap()
38 {
39 return [
40 'MESSAGE_ID' => new IntegerField(
41 'MESSAGE_ID',
42 [
43 'primary' => true,
44 'required' => true,
45 ]
46 ),
47 'DATE_CREATE' => new DatetimeField(
48 'DATE_CREATE',
49 [
50 'required' => true,
51 'default' => function()
52 {
53 return new DateTime();
54 },
55 ]
56 ),
57 'DATE_REMOVE' => new DatetimeField(
58 'DATE_REMOVE',
59 [
60 'required' => true,
61 ]
62 ),
63 ];
64 }
65}