| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?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' => 'benefits_bibi_return',
- 'val' => "每一笔投注都可享返利,长期有效",
- 'remark' => '笔笔返利',
- 'group_id' => 1,
- 'created_at' => now(),
- 'updated_at' => now(),
- ]
- ]);
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- //
- }
- };
|