|
|
@@ -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 "返佣比例"');
|
|
|
- });
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
/**
|