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
No known key found for this signature in database

View file

@ -16,7 +16,7 @@ public function up(): void
$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();
});