integer('receiving_time')->comment('接单时间'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('orders', function (Blueprint $table) { //删除接单时间 $table->dropColumn('receiving_time'); }); } }