timestamp('deliver_at')->nullable()->comment('发货时间'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('waybills', function (Blueprint $table) { $table->dropColumn('deliver_at'); }); } }