feat: 扩展奖池、风控与报表能力,新增对账补偿、广播和人工操作接口

This commit is contained in:
2026-05-18 15:09:10 +08:00
parent 9157dcb6a1
commit 6ef41cee76
46 changed files with 1889 additions and 98 deletions

View File

@@ -0,0 +1,22 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
return new class extends Migration
{
public function up(): void
{
Schema::table('jackpot_pools', function (Blueprint $table): void {
$table->json('combo_trigger_play_codes')->nullable()->after('min_bet_amount');
});
}
public function down(): void
{
Schema::table('jackpot_pools', function (Blueprint $table): void {
$table->dropColumn('combo_trigger_play_codes');
});
}
};