| 123456789101112131415161718192021222324252627282930313233343536 |
- <?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')->insert([
- [
- 'field' => 'receiving_address_erc20',
- 'val' => "Trftghhnnbg6775tghy678ikuj9807ujht",
- 'remark' => '收款地址_ERC20',
- 'created_at' => now(),
- 'updated_at' => now(),
- ],
- ]);
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- //
- }
- };
|