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
			| 
											12 years ago
										 | <?php
 | ||
|  | 
 | ||
|  | namespace yiiunit\data\validators\models;
 | ||
|  | 
 | ||
|  | 
 | ||
|  | use yii\db\ActiveRecord;
 | ||
|  | 
 | ||
| 
											12 years ago
										 | class ValidatorTestRefModel extends ActiveRecord
 | ||
| 
											12 years ago
										 | {
 | ||
|  | 
 | ||
|  | 	public $test_val = 2;
 | ||
|  | 	public $test_val_fail = 99;
 | ||
| 
											12 years ago
										 | 
 | ||
| 
											12 years ago
										 | 	public static function tableName()
 | ||
|  | 	{
 | ||
| 
											12 years ago
										 | 		return 'tbl_validator_ref';
 | ||
| 
											12 years ago
										 | 	}
 | ||
|  | 
 | ||
|  | 	public function getMain()
 | ||
|  | 	{
 | ||
| 
											12 years ago
										 | 		return $this->hasOne(ValidatorTestMainModel::className(), array('id' => 'ref'));
 | ||
| 
											12 years ago
										 | 	}
 | ||
|  | }
 |