medal bonus factor places: 6

This commit is contained in:
xiaomlove
2023-01-26 23:13:40 +08:00
parent 9cf6583d9a
commit fb803d1989

View File

@@ -14,7 +14,7 @@ return new class extends Migration
public function up()
{
Schema::table('medals', function (Blueprint $table) {
$table->float('bonus_addition_factor')->default(0);
$table->float('bonus_addition_factor', 10, 6)->default(0);
});
}