public function down()
 {
     $this->dropTable(Vote::tableName());
 }
Exemple #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getVotes()
 {
     return $this->hasMany(Vote::className(), ['answer_id' => 'id'])->via('answers');
 }