Apply the above migrations? (yes|no) [no]:yes
*\ applying m140314_120159_create_qa_question_table
PHP Strict Warning 'yii\base\ErrorException' with message 'Declaration of artkost\qa\models\Question::afterSave() should be compatible with yii\db\BaseActiveRecord::afterSave($insert, $changedAttributes)'
Simply adding '$changedAttributes' to the afterSave function in both Question and Answer Models, allowed the migration to succeed.
Got the following error when applying migration.
Apply the above migrations? (yes|no) [no]:yes *\ applying m140314_120159_create_qa_question_table PHP Strict Warning 'yii\base\ErrorException' with message 'Declaration of artkost\qa\models\Question::afterSave() should be compatible with yii\db\BaseActiveRecord::afterSave($insert, $changedAttributes)'
Simply adding '$changedAttributes' to the afterSave function in both Question and Answer Models, allowed the migration to succeed.