Ken hai 1 día
pai
achega
68a6892195

+ 0 - 1
app/Http/Controllers/admin/ActivityUser.php

@@ -5,7 +5,6 @@ namespace App\Http\Controllers\admin;
 use App\Constants\HttpStatus;
 use App\Http\Controllers\Controller;
 use App\Models\Wallet as WalletModel;
-use App\Services\ActivityRewardService;
 use App\Services\ActivityUserService;
 use App\Services\BalanceLogService;
 use App\Services\TopUpService;

+ 0 - 39
database/migrations/2026_01_30_150325_create_inspection.php

@@ -1,39 +0,0 @@
-<?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::create('inspection', function (Blueprint $table) {
-            $table->engine = 'InnoDB';
-            $table->collation = 'utf8mb4_general_ci';
-            $table->id();
-
-
-
-
-            $table->timestamps();
-        });
-        DB::statement("ALTER TABLE bot_inspection COMMENT = '人工稽查'");
-
-    }
-
-    /**
-     * Reverse the migrations.
-     *
-     * @return void
-     */
-    public function down()
-    {
-        Schema::dropIfExists('inspection');
-    }
-};