Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
recentaddresstable.php
1<?php
2
4
7
9{
10 public static function getTableName()
11 {
12 return 'b_location_recent_address';
13 }
14
15 public static function getMap()
16 {
17 return array(
18 (new Fields\IntegerField('ID'))
19 ->configurePrimary()
20 ->configureAutocomplete(),
21 new Fields\IntegerField('USER_ID'),
22 new Fields\TextField('ADDRESS'),
23 new Fields\DatetimeField('USED_AT'),
24 );
25 }
26}