project column

This commit is contained in:
2023-04-20 02:07:19 +03:00
parent edea2cc3e7
commit 2482ae89f6
24 changed files with 737 additions and 18 deletions

View File

@ -18,7 +18,7 @@ class ProjectSearch extends Project
public function rules()
{
return [
[['id','status'], 'integer'],
[['id','status', 'owner_id'], 'integer'],
[['name', 'description', 'created_at', 'updated_at'], 'safe'],
];
}
@ -61,6 +61,7 @@ class ProjectSearch extends Project
$query->andFilterWhere([
'id' => $this->id,
'status' => $this->status,
'owner_id' => $this->owner_id,
'created_at' => $this->created_at,
'updated_at' => $this->updated_at,
]);