Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
eventmessageattachment.php
1<?php
10
12
29class EventMessageAttachmentTable extends Entity\DataManager
30{
34 public static function getTableName()
35 {
36 return 'b_event_message_attachment';
37 }
38
42 public static function getMap()
43 {
44 return array(
45 'EVENT_MESSAGE_ID' => array(
46 'data_type' => 'integer',
47 'primary' => true,
48 ),
49
50 'FILE_ID' => array(
51 'data_type' => 'integer',
52 'primary' => true,
53 ),
54 );
55 }
56
57}