string('source')->nullable()->comment("来源")->after("url"); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('feedback', function (Blueprint $table) { $table->dropColumn("source"); }); } };