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