Skip to content

Commit b227614

Browse files
committed
chore: Disable health check by default
1 parent 6c1293c commit b227614

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?php
2+
3+
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Database\Schema\Blueprint;
5+
use Illuminate\Support\Facades\Schema;
6+
7+
return new class extends Migration
8+
{
9+
/**
10+
* Run the migrations.
11+
*/
12+
public function up(): void
13+
{
14+
Schema::table('applications', function (Blueprint $table) {
15+
$table->boolean('health_check_enabled')->default(false)->change();
16+
});
17+
}
18+
19+
/**
20+
* Reverse the migrations.
21+
*/
22+
public function down(): void
23+
{
24+
Schema::table('applications', function (Blueprint $table) {
25+
$table->boolean('health_check_enabled')->default(true)->change();
26+
});
27+
}
28+
};

0 commit comments

Comments
 (0)