Ken hai 1 día
pai
achega
1e86b90236

+ 2 - 2
app/Http/Controllers/api/ActivityReward.php

@@ -23,10 +23,10 @@ class ActivityReward extends BaseController
 {
 {
 
 
     //活动规则
     //活动规则
-    public function role(): JsonResponse
+    public function rule(): JsonResponse
     {
     {
         try {
         try {
-            $activityRole =ConfigService::getVal("activity_role");
+            $activityRole =ConfigService::getVal("activity_rule");
         }catch (Exception $e){
         }catch (Exception $e){
             return $this->error($e->getMessage(), [], $e->getCode());
             return $this->error($e->getMessage(), [], $e->getCode());
         }
         }

+ 30 - 0
database/migrations/2026_01_30_112935_update_config.php

@@ -0,0 +1,30 @@
+<?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()
+    {
+        DB::table('config')->where('field', 'activity_role')->update([
+            'field' => 'activity_rule'
+        ]);
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        //
+    }
+};