Skip to content

Commit 860af5c

Browse files
committed
Fix data migration
1 parent 9a0d7da commit 860af5c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

database/migrations/2024_02_18_100000_results_bad_json_table.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ public function up(): void
3535
$table->float('ping', 8, 3)->nullable();
3636
$table->unsignedBigInteger('download')->nullable();
3737
$table->unsignedBigInteger('upload')->nullable();
38+
$table->integer('server_id')->nullable();
39+
$table->string('server_host')->nullable();
40+
$table->string('server_name')->nullable();
3841
$table->text('comments')->nullable();
3942
$table->json('data')->nullable();
4043
$table->string('status');

0 commit comments

Comments
 (0)