| 1 | <?php |
||
| 14 | class History extends \Model |
||
| 15 | { |
||
| 16 | public static $cols = [ |
||
| 17 | //Основные параметры |
||
| 18 | 'card_item_id' => ['type' => 'select', 'source' => 'relation', 'relation' => 'cardItem'], |
||
| 19 | 'amount' => ['type' => 'decimal'], |
||
| 20 | //Системные параметры |
||
| 21 | 'date_create' => ['type' => 'dateTime'], |
||
| 22 | ]; |
||
| 23 | |||
| 24 | public static function relations() |
||
| 33 | |||
| 34 | } |
||
| 35 |