visuddhinanda 2 年之前
父節點
當前提交
845a1bdf64
共有 1 個文件被更改,包括 35 次插入0 次删除
  1. 35 0
      database/migrations/2023_12_31_105631_add_type_in_discussions.php

+ 35 - 0
database/migrations/2023_12_31_105631_add_type_in_discussions.php

@@ -0,0 +1,35 @@
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\Schema;
+
+class AddTypeInDiscussions extends Migration
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        Schema::table('discussions', function (Blueprint $table) {
+            //
+            $table->string('type',16)->index()->default('discussion');
+
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::table('discussions', function (Blueprint $table) {
+            //
+            $table->dropColumn('type');
+        });
+    }
+}