Files
yii2/tests/data/ar/OrderWithNullFK.php
2026-01-27 05:53:03 -03:00

26 lines
452 B
PHP

<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://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';
}
}