diff --git a/database/migrations/2024_07_19_132617_disable_healtcheck_by_default.php b/database/migrations/2024_07_19_132617_disable_healtcheck_by_default.php new file mode 100644 index 000000000..5de50de0c --- /dev/null +++ b/database/migrations/2024_07_19_132617_disable_healtcheck_by_default.php @@ -0,0 +1,28 @@ +boolean('health_check_enabled')->default(false)->change(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('applications', function (Blueprint $table) { + $table->boolean('health_check_enabled')->default(true)->change(); + }); + } +};