68 lines
1.4 KiB
PHP
Executable File
68 lines
1.4 KiB
PHP
Executable File
<?php
|
|
|
|
namespace common\models;
|
|
|
|
use Yii;
|
|
|
|
/**
|
|
* This is the model class for table "project_user".
|
|
*
|
|
* @property int $id
|
|
* @property int $card_id
|
|
* @property int $project_id
|
|
*
|
|
* @property Project $project
|
|
* @property UserCard $card
|
|
*/
|
|
class ProjectUser extends \yii\db\ActiveRecord
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public static function tableName()
|
|
{
|
|
return 'project_user';
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
[['card_id', 'project_id'], 'required'],
|
|
[['card_id', 'project_id'], 'integer'],
|
|
[['project_id'], 'exist', 'skipOnError' => true, 'targetClass' => Project::className(), 'targetAttribute' => ['project_id' => 'id']],
|
|
[['card_id'], 'exist', 'skipOnError' => true, 'targetClass' => UserCard::className(), 'targetAttribute' => ['card_id' => 'id']],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function attributeLabels()
|
|
{
|
|
return [
|
|
'id' => 'ID',
|
|
'card_id' => 'Card ID',
|
|
'project_id' => 'Project ID',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return \yii\db\ActiveQuery
|
|
*/
|
|
public function getProject()
|
|
{
|
|
return $this->hasOne(Project::className(), ['id' => 'project_id']);
|
|
}
|
|
|
|
/**
|
|
* @return \yii\db\ActiveQuery
|
|
*/
|
|
public function getCard()
|
|
{
|
|
return $this->hasOne(UserCard::className(), ['id' => 'card_id']);
|
|
}
|
|
}
|