浏览代码

Add migration

Daniel Supernault 2 年之前
父节点
当前提交
2feaffa98d

+ 2 - 6
database/migrations/2022_10_07_045520_add_reblog_of_id_index_to_statuses_table.php

@@ -14,11 +14,6 @@ class AddReblogOfIdIndexToStatusesTable extends Migration
     public function up()
     {
         Schema::table('statuses', function (Blueprint $table) {
-            $sc = Schema::getConnection()->getDoctrineSchemaManager();
-            if(array_key_exists('statuses_in_reply_or_reblog_index', $sc)) {
-                $table->dropIndex('statuses_in_reply_or_reblog_index');
-            }
-
             $table->index('in_reply_to_id');
             $table->index('reblog_of_id');
         });
@@ -32,7 +27,8 @@ class AddReblogOfIdIndexToStatusesTable extends Migration
     public function down()
     {
         Schema::table('statuses', function (Blueprint $table) {
-            //
+            $table->dropIndex('statuses_in_reply_to_id_index');
+            $table->dropIndex('statuses_reblog_of_id_index');
         });
     }
 }

+ 35 - 0
database/migrations/2022_10_07_055133_remove_old_compound_index_from_statuses_table.php

@@ -0,0 +1,35 @@
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\Schema;
+
+class RemoveOldCompoundIndexFromStatusesTable extends Migration
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        Schema::table('statuses', function (Blueprint $table) {
+            $sc = Schema::getConnection()->getDoctrineSchemaManager();
+            if(array_key_exists('statuses_in_reply_to_id_reblog_of_id_index', $sc->listTableIndexes('statuses'))) {
+                $table->dropIndex('statuses_in_reply_to_id_reblog_of_id_index');
+            }
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::table('statuses', function (Blueprint $table) {
+            //
+        });
+    }
+}