Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
messageuploadqueue.php
1<?php
2
4
6
24{
25
26 const SYNC_STAGE_NEW = 0;
27
28 public static function getFilePath()
29 {
30 return __FILE__;
31 }
32
33 public static function getTableName()
34 {
35 return 'b_mail_message_upload_queue';
36 }
37
38 public static function getMap()
39 {
40 return array(
41 'ID' => array(
42 'data_type' => 'string',
43 'primary' => true,
44 ),
45 'MAILBOX_ID' => array(
46 'data_type' => 'integer',
47 'primary' => true,
48 ),
49 'SYNC_STAGE' => array(
50 'data_type' => 'integer',
51 ),
52 'SYNC_LOCK' => array(
53 'data_type' => 'integer',
54 ),
55 'ATTEMPTS' => array(
56 'data_type' => 'integer',
57 ),
58 );
59 }
60
61}