Merge branch 'chores/bump-copyright' into 'develop'
[akkoma] / priv / repo / migrations / 20190408123347_create_conversations.exs
index 7b7d89da707fe76c0e7f4759fd7a53f255afdaad..aab6cf802ce4dd68df51bb3f7f43cf8049cd4c8e 100644 (file)
@@ -1,5 +1,5 @@
 # Pleroma: A lightweight social networking server
-# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
+# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
 # SPDX-License-Identifier: AGPL-3.0-only
 
 defmodule Pleroma.Repo.Migrations.CreateConversations do
@@ -19,8 +19,8 @@ defmodule Pleroma.Repo.Migrations.CreateConversations do
       timestamps()
     end
 
-    create_if_not_exists index(:conversation_participations, [:conversation_id])
-    create_if_not_exists unique_index(:conversation_participations, [:user_id, :conversation_id])
-    create_if_not_exists unique_index(:conversations, [:ap_id])
+    create_if_not_exists(index(:conversation_participations, [:conversation_id]))
+    create_if_not_exists(unique_index(:conversation_participations, [:user_id, :conversation_id]))
+    create_if_not_exists(unique_index(:conversations, [:ap_id]))
   end
 end