visuddhinanda 1 年之前
父节点
当前提交
7ca81bacd5
共有 1 个文件被更改,包括 34 次插入0 次删除
  1. 34 0
      api-v8/database/migrations/2025_01_15_140331_add_editor_in_user_dicts.php

+ 34 - 0
api-v8/database/migrations/2025_01_15_140331_add_editor_in_user_dicts.php

@@ -0,0 +1,34 @@
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\Schema;
+
+class AddEditorInUserDicts extends Migration
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        Schema::table('user_dicts', function (Blueprint $table) {
+            //
+            $table->uuid('editor_id')->nullable()->index()->comment('此次编辑者');
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::table('user_dicts', function (Blueprint $table) {
+            //
+            $table->dropColumn('editor_id');
+        });
+    }
+}