Ken 1 zi în urmă
părinte
comite
75256496f3
1 a modificat fișierele cu 31 adăugiri și 0 ștergeri
  1. 31 0
      database/migrations/2026_01_30_094751_update_rebates.php

+ 31 - 0
database/migrations/2026_01_30_094751_update_rebates.php

@@ -0,0 +1,31 @@
+<?php
+
+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
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    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 "返佣比例"');
+            });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        //
+    }
+};