@@ -0,0 +1,28 @@
+<?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.
+ public function down()
+ //
+};