라벨 마이그레이션 파일에 열이 있는지 확인 이미 테이블 이름이 있습니다.table_one.이제 두 개의 열을 더 추가하려고 합니다.지금까지는 모든 것이 잘 작동합니다.그러나 내 방법에서는 다음과 같은 열이 내 테이블에 있는지 확인하고 싶습니다.dropIfExists('table'). /** * Run the migrations. * * @return void */ public function up() { Schema::table('table_one', function (Blueprint $table) { $table->string('column_one')->nullable(); $table->string('column_two')->nullable(); }); } /** * Reverse the migra..