Ken 1 hari lalu
induk
melakukan
0235d96d8b
1 mengubah file dengan 3 tambahan dan 4 penghapusan
  1. 3 4
      database/migrations/2026_01_30_094751_update_rebates.php

+ 3 - 4
database/migrations/2026_01_30_094751_update_rebates.php

@@ -4,8 +4,8 @@ use Illuminate\Database\Migrations\Migration;
 use Illuminate\Database\Schema\Blueprint;
 use Illuminate\Support\Facades\Schema;
 use Illuminate\Support\Facades\DB;
-return new class extends Migration
-{
+
+return new class extends Migration {
     /**
      * Run the migrations.
      *
@@ -14,9 +14,8 @@ return new class extends Migration
     public function up()
     {
         Schema::table('rebates', function (Blueprint $table) {
-            // 修改 rebate_ratio 字段的精度
             DB::statement('ALTER TABLE bot_rebates MODIFY COLUMN rebate_ratio DECIMAL(10, 4) NULL COMMENT "返佣比例"');
-            });
+        });
     }
 
     /**