fix: use json as it is just better than string for huge amount of logs

This commit is contained in:
peaklabs-dev
2025-01-15 19:56:01 +01:00
parent 7bdef134e6
commit 4986485448

View File

@@ -16,7 +16,7 @@ return new class extends Migration
$table->string('uuid')->unique();
$table->enum('status', ['success', 'failed', 'running'])->default('running');
$table->text('message')->nullable();
$table->text('cleanup_details')->nullable();
$table->json('cleanup_log')->nullable();
$table->foreignId('server_id');
$table->timestamps();
});