Larvel 마이그레이션을 통해 열의 기본값 변경 기본값이 이미 할당된 테이블이 있습니다.예를 들어 다음을 살펴볼 수 있습니다. Schema::create('users', function (Blueprint $table) { $table->increments('id')->unsigned(); $table->integer('active')->default(1); }); 이제 활성 필드의 기본값을 변경합니다.저는 다음과 같은 일을 할 것으로 기대하고 있습니다. if (Schema::hasTable('users')) { Schema::table('users', function (Blueprint $table) { if (Schema::hasColumn('users', 'active')) { $table->in..