<?php use yii\db\Migration; class m161125_121512_wifi extends Migration { public function up() { $this->addColumn('{{%entity_resort}}', 'wifi', $this->integer(1)); $this->createIndex('IDX_entity_resort_wifi', '{{%entity_resort}}', 'wifi'); } public function down() { $this->dropIndex('IDX_entity_resort_wifi', '{{%entity_resort}}'); $this->dropColumn('{{%entity_resort}}', 'wifi'); } }