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