| 12345678910111213141516171819202122232425262728 |
- <?php
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- return new class extends Migration {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- DB::table('config')->where('field', 'maintenance_switch')->update(['group_id' => 1, 'val' => '0','remark'=>'维护开关(0正常,1维护中)']);
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- //
- }
- };
|