mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-06 23:39:02 +01:00
23 lines
372 B
PHP
23 lines
372 B
PHP
<?php
|
|
|
|
namespace yiiunit\data\validators\models;
|
|
|
|
|
|
use yii\db\ActiveRecord;
|
|
|
|
class ValidatorTestRefModel extends ActiveRecord
|
|
{
|
|
|
|
public $test_val = 2;
|
|
public $test_val_fail = 99;
|
|
|
|
public static function tableName()
|
|
{
|
|
return 'tbl_validator_ref';
|
|
}
|
|
|
|
public function getMain()
|
|
{
|
|
return $this->hasOne(ValidatorTestMainModel::className(), array('id' => 'ref'));
|
|
}
|
|
} |