浏览代码

Add migration

Daniel Supernault 3 年之前
父节点
当前提交
3c3e0bef64
共有 1 个文件被更改,包括 34 次插入0 次删除
  1. 34 0
      database/migrations/2022_06_03_051308_add_object_column_to_follow_requests_table.php

+ 34 - 0
database/migrations/2022_06_03_051308_add_object_column_to_follow_requests_table.php

@@ -0,0 +1,34 @@
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\Schema;
+
+class AddObjectColumnToFollowRequestsTable extends Migration
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        Schema::table('follow_requests', function (Blueprint $table) {
+            $table->json('activity')->nullable()->after('following_id');
+            $table->timestamp('handled_at')->nullable()->after('is_local');
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::table('follow_requests', function (Blueprint $table) {
+            $table->dropColumn('activity');
+            $table->dropColumn('handled_at');
+        });
+    }
+}