Somehow fixed the repo insert [skip-ci]

This commit is contained in:
Karen Konou 2019-02-07 23:44:30 +01:00
commit c43f414a79
2 changed files with 4 additions and 3 deletions

View file

@ -3,10 +3,10 @@ defmodule Pleroma.Repo.Migrations.CreateThreadMutes do
def change do
create table(:thread_mutes) do
add :user, references(:users, type: :uuid, on_delete: :delete_all)
add :user_id, references(:users, type: :uuid, on_delete: :delete_all)
add :context, :string
end
create index(:thread_mutes, [:user])
create index(:thread_mutes, [:user_id])
end
end