seven 1 周之前
父节点
当前提交
c446b4a6f3
共有 1 个文件被更改,包括 34 次插入0 次删除
  1. 34 0
      database/migrations/2025_11_28_145810_add_language_to_keyboard_table.php

+ 34 - 0
database/migrations/2025_11_28_145810_add_language_to_keyboard_table.php

@@ -0,0 +1,34 @@
+<?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()
+    {
+        Schema::table('keyboard', function (Blueprint $table) {
+            $table->string('language', 10)->default('en')->comment('键盘语言');
+            $table->string('explain', 30)->default('')->comment('说明');
+            //
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::table('keyboard', function (Blueprint $table) {
+            //
+        });
+    }
+};