X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=priv%2Frepo%2Fmigrations%2F20190205114625_create_thread_mutes.exs;h=df9eb7677b5419d8909d9eb146055ec213131d24;hb=4c3971aebd9cb950e300aee17598a7be6e94691c;hp=7e44db1214ab8ebefb4cadbed85fb4d68f2fa472;hpb=ce827a1626a56ce8574cf13d29c6a3d799d3e80d;p=akkoma diff --git a/priv/repo/migrations/20190205114625_create_thread_mutes.exs b/priv/repo/migrations/20190205114625_create_thread_mutes.exs index 7e44db121..df9eb7677 100644 --- a/priv/repo/migrations/20190205114625_create_thread_mutes.exs +++ b/priv/repo/migrations/20190205114625_create_thread_mutes.exs @@ -3,10 +3,10 @@ defmodule Pleroma.Repo.Migrations.CreateThreadMutes do def change do create_if_not_exists table(:thread_mutes) do - add :user_id, references(:users, type: :uuid, on_delete: :delete_all) - add :context, :string + add(:user_id, references(:users, type: :uuid, on_delete: :delete_all)) + add(:context, :string) end - - create_if_not_exists unique_index(:thread_mutes, [:user_id, :context], name: :unique_index) + + create_if_not_exists(unique_index(:thread_mutes, [:user_id, :context], name: :unique_index)) end end