<?php use yii\db\Migration; class m220124_113021_change_entity_in_special extends Migration { public function up() { $this->alterColumn('{{%special}}', 'entityId', $this->integer()); } public function down() { $this->alterColumn('{{%special}}', 'entityId', $this->integer()->notNull()); } }