You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
372 B
23 lines
372 B
11 years ago
|
<?php
|
||
|
|
||
|
namespace yiiunit\data\validators\models;
|
||
|
|
||
|
|
||
|
use yii\db\ActiveRecord;
|
||
|
|
||
11 years ago
|
class ValidatorTestRefModel extends ActiveRecord
|
||
11 years ago
|
{
|
||
|
|
||
|
public $test_val = 2;
|
||
|
public $test_val_fail = 99;
|
||
11 years ago
|
|
||
11 years ago
|
public static function tableName()
|
||
|
{
|
||
11 years ago
|
return 'tbl_validator_ref';
|
||
11 years ago
|
}
|
||
|
|
||
|
public function getMain()
|
||
|
{
|
||
11 years ago
|
return $this->hasOne(ValidatorTestMainModel::className(), array('id' => 'ref'));
|
||
11 years ago
|
}
|
||
|
}
|