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