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.
21 lines
353 B
21 lines
353 B
11 years ago
|
<?php
|
||
|
|
||
|
namespace yiiunit\data\validators\models;
|
||
|
|
||
|
|
||
|
use yii\db\ActiveRecord;
|
||
|
|
||
11 years ago
|
class ValidatorTestMainModel extends ActiveRecord
|
||
11 years ago
|
{
|
||
|
public $testMainVal = 1;
|
||
11 years ago
|
|
||
11 years ago
|
public static function tableName()
|
||
|
{
|
||
11 years ago
|
return 'tbl_validator_main';
|
||
11 years ago
|
}
|
||
|
|
||
|
public function getReferences()
|
||
|
{
|
||
11 years ago
|
return $this->hasMany(ValidatorTestRefModel::className(), array('ref' => 'id'));
|
||
11 years ago
|
}
|
||
|
}
|