StackOverflow 文档 yii2 教程 数据库迁移 删除重命名列 删除重命名列 Created: November-22, 2018 public function up() { $this->dropColumn('post', 'position'); $this->renameColumn('post', 'owner_id', 'user_id'); $this->alterColumn('post', 'updated', $this->timestamp()->notNull()->defaultValue('0000-00-00 00:00:00')); } 恢复迁移创建表