<?php use yii\db\Migration; class m170220_112544_tour_delete extends Migration { public function up() { $this->addColumn('{{%tour}}', 'isDelete', $this->integer()->defaultValue(0)); $this->createIndex('IDX_tour_isDelete', '{{%tour}}', 'isDelete'); } public function down() { $this->dropIndex('IDX_tour_isDelete', '{{%tour}}'); $this->dropColumn('{{%tour}}', 'isDelete'); } }