mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-08 08:17:24 +01:00
20 lines
274 B
PHP
20 lines
274 B
PHP
<?php
|
|
|
|
namespace yiiunit\data\ar;
|
|
|
|
class Order extends ActiveRecord
|
|
{
|
|
public static function tableName()
|
|
{
|
|
return 'tbl_order';
|
|
}
|
|
|
|
public static function relations()
|
|
{
|
|
return array(
|
|
'customer:Customer' => array(
|
|
'on' => '@.id = ?.customer_id',
|
|
),
|
|
);
|
|
}
|
|
} |