visuddhinanda 1 éve
szülő
commit
7ca81bacd5

+ 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');
+        });
+    }
+}