use common\components\Migration\SafeMigration; /** * Handles adding columns to table ``. render('_foreignTables', [ 'foreignKeys' => $foreignKeys, ]) ?> */ class extends SafeMigration { /** * {@inheritdoc} */ public function safeUp() { render('_addColumns', [ 'table' => $table, 'fields' => $fields, 'foreignKeys' => $foreignKeys, ]) ?> } /** * {@inheritdoc} */ public function safeDown() { render('_dropColumns', [ 'table' => $table, 'fields' => $fields, 'foreignKeys' => $foreignKeys, ]) ?> } }