Explorar el Código

Add index migration

Daniel Supernault hace 2 años
padre
commit
e27d1a4424

+ 2 - 1
database/migrations/2022_10_07_110644_add_item_id_and_item_type_indexes_to_notifications_table.php

@@ -27,7 +27,8 @@ class AddItemIdAndItemTypeIndexesToNotificationsTable extends Migration
     public function down()
     {
         Schema::table('notifications', function (Blueprint $table) {
-            //
+            $table->dropIndex('notifications_item_id_index');
+            $table->dropIndex('notifications_item_type_index');
         });
     }
 }

+ 32 - 0
database/migrations/2022_12_20_075729_add_action_index_to_notifications_table.php

@@ -0,0 +1,32 @@
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\Schema;
+
+return new class extends Migration
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        Schema::table('notifications', function (Blueprint $table) {
+            $table->index('action');
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::table('notifications', function (Blueprint $table) {
+            $table->dropIndex('notifications_action_index');
+        });
+    }
+};