Ken 2 weken geleden
bovenliggende
commit
ae6c9558b1
1 gewijzigde bestanden met toevoegingen van 30 en 0 verwijderingen
  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()
+    {
+        //
+    }
+};