seven 2 days ago
parent
commit
81b4e46e49
1 changed files with 1 additions and 1 deletions
  1. 1 1
      database/migrations/2025_11_20_145643_update_rebates.php

+ 1 - 1
database/migrations/2025_11_20_145643_update_rebates.php

@@ -15,7 +15,7 @@ return new class extends Migration {
         Schema::table('rebates', function (Blueprint $table) {
             $table->decimal('profit', 10, 2)->default(0)->comment('当日输赢');
             $table->decimal('huishui_percentage', 10, 2)->default(0)->comment('回水比例');
-            $table->decimal('huishui_restriction', 10, 2)->default(0)->comment('回水限制值');
+            $table->decimal('huishui_restriction', 20, 2)->default(0)->comment('回水限制值');
         });
 
 //