X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=database%2Fmigrations%2F2022_03_25_123528_result_comment.php;h=06d5609f62ef87b1da585b3037b18dc1f2111141;hb=ec16505e5fc37ac233db64def11347f5ad21824d;hp=b5d5b052339061b6c75f21abccc1779ab79ee104;hpb=a4260a00251cef4ad806c9d5c44d4c444d6ab831;p=alttp.git 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); }); }