string('type')->default('1')->comment('类型1访客2施工3车辆')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('studies', function (Blueprint $table) { $table->dropColumn('type'); }); } };