fix: remove unnecessary table existence checks in migration files

This commit is contained in:
Andras Bacsai
2025-11-17 14:28:28 +01:00
parent 60ef63de54
commit 028e7cb35e
2 changed files with 0 additions and 4 deletions

View File

@@ -11,7 +11,6 @@ return new class extends Migration
*/
public function up(): void
{
if (!Schema::hasTable('cloud_init_scripts')) {
Schema::create('cloud_init_scripts', function (Blueprint $table) {
$table->id();
$table->foreignId('team_id')->constrained()->onDelete('cascade');
@@ -22,7 +21,6 @@ return new class extends Migration
$table->index('team_id');
});
}
}
/**
* Reverse the migrations.

View File

@@ -11,7 +11,6 @@ return new class extends Migration
*/
public function up(): void
{
if (!Schema::hasTable('webhook_notification_settings')) {
Schema::create('webhook_notification_settings', function (Blueprint $table) {
$table->id();
$table->foreignId('team_id')->constrained()->cascadeOnDelete();
@@ -36,7 +35,6 @@ return new class extends Migration
$table->unique(['team_id']);
});
}
}
/**
* Reverse the migrations.