mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-16 23:48:16 +08:00
26 lines
458 B
PHP
26 lines
458 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 NullValues.
|
|
*
|
|
* @property int $id
|
|
* @property int $var1
|
|
* @property int $var2
|
|
* @property int $var3
|
|
* @property string $stringcol
|
|
*/
|
|
class NullValues extends ActiveRecord
|
|
{
|
|
public static function tableName()
|
|
{
|
|
return 'null_values';
|
|
}
|
|
}
|