diff --git a/database/migrations/2020_12_18_090026_swap_target_type_index_order.php b/database/migrations/2020_12_18_090026_swap_target_type_index_order.php new file mode 100644 index 0000000000..9b637844fb --- /dev/null +++ b/database/migrations/2020_12_18_090026_swap_target_type_index_order.php @@ -0,0 +1,40 @@ +dropIndex(['target_id', 'target_type']); + }); + + Schema::table('action_logs', function (Blueprint $table) { + $table->index(['target_type', 'target_id']); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('action_logs', function (Blueprint $table) { + $table->dropIndex(['target_type', 'target_id']); + }); + + Schema::table('action_logs', function (Blueprint $table) { + $table->index(['target_id', 'target_type']); + }); + } +}