Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
ActivityStorageTable.php
1<?php
2
4
6
24{
25 public static function getTableName()
26 {
27 return 'b_bp_storage_activity';
28 }
29
30 public static function getMap()
31 {
32 return [
33 'ID' => [
34 'data_type' => 'integer',
35 'primary' => true,
36 ],
37 'WORKFLOW_TEMPLATE_ID' => [
38 'data_type' => 'integer'
39 ],
40 'ACTIVITY_NAME' => [
41 'data_type' => 'string'
42 ],
43 'KEY_ID' => [
44 'data_type' => 'string'
45 ],
46 'KEY_VALUE' => [
47 'data_type' => 'string'
48 ]
49 ];
50 }
51}