summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20190205114625_create_thread_mutes.exs
blob: baaf072536cef5e97a41c08e537a9cadde70d65d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
defmodule Pleroma.Repo.Migrations.CreateThreadMutes do
  use Ecto.Migration

  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
    end

    create_if_not_exists unique_index(:thread_mutes, [:user_id, :context], name: :unique_index)
  end
end