dropColumn('time'); $table->timestamp('deadline')->nullable()->comment('接单倒计时'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('procurements', function (Blueprint $table) { $table->timestamp('time')->nullable()->comment('接单倒计时'); $table->dropColumn('deadline'); }); } }