table('message_notifications'); $table->removeColumn('create_time') ->removeColumn('update_time') ->removeColumn('delete_time') ->update(); $table->addTimestamps('create_time', 'update_time') ->addColumn('delete_time', 'timestamp', ['null' => true, 'comment' => '删除时间']) ->update(); } public function down() { } }