| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?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' => 'huishui_restriction',
- 'val' => "1000",
- 'remark' => '输钱达到限制值',
- 'group_id' => 1,
- 'created_at' => now(),
- 'updated_at' => now(),
- ],
- [
- 'field' => 'huishui_percentage',
- 'val' => "0.01",
- 'remark' => '输钱打到限制值,回水比例',
- 'group_id' => 1,
- 'created_at' => now(),
- 'updated_at' => now(),
- ],
- ]);
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- //
- }
- };
|