11 lines
228 B
PHP
11 lines
228 B
PHP
<?php
|
|
|
|
namespace common\models\oldDb;
|
|
|
|
class UserRelative extends \common\modelsgii\UserRelative
|
|
{
|
|
|
|
public function getRelationshop(){
|
|
return $this->hasMany(UserRelationship::className(),['id'=>'relative']);
|
|
}
|
|
} |