Add option to modify HTTP pool size
[akkoma] / priv / repo / migrations / 20181206125616_add_tags_to_users.exs
index 7d42a0fba47b900e39c15f852fa4875076fd67ae..a46c0fc35acd50d01509e9a778b4d0e065dfe4d4 100644 (file)
@@ -3,9 +3,9 @@ defmodule Pleroma.Repo.Migrations.AddTagsToUsers do
 
   def change do
     alter table(:users) do
-      add :tags, {:array, :string}
+      add(:tags, {:array, :string})
     end
 
-    create_if_not_exists index(:users, [:tags], using: :gin)
+    create_if_not_exists(index(:users, [:tags], using: :gin))
   end
 end