From b6969e03617ce65dbb98e0a4d0903c2fab27e7e4 Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Fri, 25 Mar 2022 15:07:55 +0100 Subject: [PATCH] decimal columns are dum --- database/migrations/2022_03_25_123528_result_comment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2022_03_25_123528_result_comment.php b/database/migrations/2022_03_25_123528_result_comment.php index b5d5b05..06d5609 100644 --- a/database/migrations/2022_03_25_123528_result_comment.php +++ b/database/migrations/2022_03_25_123528_result_comment.php @@ -14,7 +14,7 @@ return new class extends Migration public function up() { Schema::table('results', function(Blueprint $table) { - $table->decimal('time', 6, 2)->unsigned()->default(0)->change(); + $table->decimal('time', 8, 2)->unsigned()->default(0)->change(); $table->text('comment')->nullable()->default(null); }); } -- 2.39.2