fix: resolve duplicate migration timestamps and add idempotency guards
Two migrations had identical timestamps (2025_10_10_120000), causing non-deterministic execution order and "table already exists" errors during instance startup. Renamed webhook_notification_settings migration to 120002 and added Schema::hasTable() guards to both migrations for idempotency. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
262a960df1
commit
60ef63de54
3 changed files with 58 additions and 54 deletions
|
|
@ -11,15 +11,17 @@
|
||||||
*/
|
*/
|
||||||
public function up(): void
|
public function up(): void
|
||||||
{
|
{
|
||||||
Schema::create('cloud_init_scripts', function (Blueprint $table) {
|
if (!Schema::hasTable('cloud_init_scripts')) {
|
||||||
$table->id();
|
Schema::create('cloud_init_scripts', function (Blueprint $table) {
|
||||||
$table->foreignId('team_id')->constrained()->onDelete('cascade');
|
$table->id();
|
||||||
$table->string('name');
|
$table->foreignId('team_id')->constrained()->onDelete('cascade');
|
||||||
$table->text('script'); // Encrypted in the model
|
$table->string('name');
|
||||||
$table->timestamps();
|
$table->text('script'); // Encrypted in the model
|
||||||
|
$table->timestamps();
|
||||||
|
|
||||||
$table->index('team_id');
|
$table->index('team_id');
|
||||||
});
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -1,46 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
use Illuminate\Database\Migrations\Migration;
|
|
||||||
use Illuminate\Database\Schema\Blueprint;
|
|
||||||
use Illuminate\Support\Facades\Schema;
|
|
||||||
|
|
||||||
return new class extends Migration
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Run the migrations.
|
|
||||||
*/
|
|
||||||
public function up(): void
|
|
||||||
{
|
|
||||||
Schema::create('webhook_notification_settings', function (Blueprint $table) {
|
|
||||||
$table->id();
|
|
||||||
$table->foreignId('team_id')->constrained()->cascadeOnDelete();
|
|
||||||
|
|
||||||
$table->boolean('webhook_enabled')->default(false);
|
|
||||||
$table->text('webhook_url')->nullable();
|
|
||||||
|
|
||||||
$table->boolean('deployment_success_webhook_notifications')->default(false);
|
|
||||||
$table->boolean('deployment_failure_webhook_notifications')->default(true);
|
|
||||||
$table->boolean('status_change_webhook_notifications')->default(false);
|
|
||||||
$table->boolean('backup_success_webhook_notifications')->default(false);
|
|
||||||
$table->boolean('backup_failure_webhook_notifications')->default(true);
|
|
||||||
$table->boolean('scheduled_task_success_webhook_notifications')->default(false);
|
|
||||||
$table->boolean('scheduled_task_failure_webhook_notifications')->default(true);
|
|
||||||
$table->boolean('docker_cleanup_success_webhook_notifications')->default(false);
|
|
||||||
$table->boolean('docker_cleanup_failure_webhook_notifications')->default(true);
|
|
||||||
$table->boolean('server_disk_usage_webhook_notifications')->default(true);
|
|
||||||
$table->boolean('server_reachable_webhook_notifications')->default(false);
|
|
||||||
$table->boolean('server_unreachable_webhook_notifications')->default(true);
|
|
||||||
$table->boolean('server_patch_webhook_notifications')->default(false);
|
|
||||||
|
|
||||||
$table->unique(['team_id']);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Reverse the migrations.
|
|
||||||
*/
|
|
||||||
public function down(): void
|
|
||||||
{
|
|
||||||
Schema::dropIfExists('webhook_notification_settings');
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
@ -0,0 +1,48 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
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();
|
||||||
|
|
||||||
|
$table->boolean('webhook_enabled')->default(false);
|
||||||
|
$table->text('webhook_url')->nullable();
|
||||||
|
|
||||||
|
$table->boolean('deployment_success_webhook_notifications')->default(false);
|
||||||
|
$table->boolean('deployment_failure_webhook_notifications')->default(true);
|
||||||
|
$table->boolean('status_change_webhook_notifications')->default(false);
|
||||||
|
$table->boolean('backup_success_webhook_notifications')->default(false);
|
||||||
|
$table->boolean('backup_failure_webhook_notifications')->default(true);
|
||||||
|
$table->boolean('scheduled_task_success_webhook_notifications')->default(false);
|
||||||
|
$table->boolean('scheduled_task_failure_webhook_notifications')->default(true);
|
||||||
|
$table->boolean('docker_cleanup_success_webhook_notifications')->default(false);
|
||||||
|
$table->boolean('docker_cleanup_failure_webhook_notifications')->default(true);
|
||||||
|
$table->boolean('server_disk_usage_webhook_notifications')->default(true);
|
||||||
|
$table->boolean('server_reachable_webhook_notifications')->default(false);
|
||||||
|
$table->boolean('server_unreachable_webhook_notifications')->default(true);
|
||||||
|
$table->boolean('server_patch_webhook_notifications')->default(false);
|
||||||
|
|
||||||
|
$table->unique(['team_id']);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('webhook_notification_settings');
|
||||||
|
}
|
||||||
|
};
|
||||||
Loading…
Reference in a new issue