Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
FileVersionTable.php
1<?php
10
13
31{
32 public static function getTableName()
33 {
34 return 'b_file_version';
35 }
36
37 public static function getMap()
38 {
39 return [
40 (new Fields\IntegerField('ORIGINAL_ID'))
41 ->configurePrimary(true),
42 (new Fields\IntegerField('VERSION_ID')),
43 (new Fields\ArrayField('META')),
44 ];
45 }
46}