mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-05 15:04:38 +01:00
25 lines
449 B
PHP
25 lines
449 B
PHP
<?php
|
|
/**
|
|
* @link http://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license http://www.yiiframework.com/license/
|
|
*/
|
|
|
|
namespace yiiunit\data\ar;
|
|
|
|
/**
|
|
* Class Order.
|
|
*
|
|
* @property int $id
|
|
* @property int $customer_id
|
|
* @property int $created_at
|
|
* @property string $total
|
|
*/
|
|
class OrderWithNullFK extends ActiveRecord
|
|
{
|
|
public static function tableName()
|
|
{
|
|
return 'order_with_null_fk';
|
|
}
|
|
}
|