Migration: Remove superfluous imports
authorlain <lain@soykaf.club>
Wed, 3 Jun 2020 11:19:38 +0000 (13:19 +0200)
committerlain <lain@soykaf.club>
Wed, 3 Jun 2020 11:19:38 +0000 (13:19 +0200)
priv/repo/migrations/20200603105113_add_unique_index_to_chat_message_references.exs

index 1101be94f566e868cbac4d64b4fe5ed1a407265e..623ac6c8503e6bbc4a559a1efa6d3d9874fba3ed 100644 (file)
@@ -1,13 +1,6 @@
 defmodule Pleroma.Repo.Migrations.BackfillChatMessageReferences do
   use Ecto.Migration
 
-  alias Pleroma.Chat
-  alias Pleroma.ChatMessageReference
-  alias Pleroma.Object
-  alias Pleroma.Repo
-
-  import Ecto.Query
-
   def change do
     create(unique_index(:chat_message_references, [:object_id, :chat_id]))
   end