boolean('health_check_enabled')->default(true); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('applications', function (Blueprint $table) { $table->dropColumn('health_check_enabled'); }); } };