Ken 2 天之前
父节点
当前提交
d3e0ce594d
共有 1 个文件被更改,包括 28 次插入0 次删除
  1. 28 0
      database/migrations/2025_12_05_173640_update_config.php

+ 28 - 0
database/migrations/2025_12_05_173640_update_config.php

@@ -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.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        //
+    }
+};