fix: use json as it is just better than string for huge amount of logs
This commit is contained in:
parent
7bdef134e6
commit
4986485448
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue