Ken 2 周之前
父节点
当前提交
ae6c9558b1
共有 1 个文件被更改,包括 30 次插入0 次删除
  1. 30 0
      database/migrations/2025_11_04_104029_update_config.php

+ 30 - 0
database/migrations/2025_11_04_104029_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','receiving_address')->update([
+            'remark'=>'收款地址_TRC20'
+        ]);
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        //
+    }
+};