blob: 8e9eccbae8b5592ecad540e7c0ea904e9ee465f5 (
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 table(:thread_mutes) do
add :user_id, references(:users, type: :uuid, on_delete: :delete_all)
add :context, :string
end
create unique_index(:thread_mutes, [:user_id, :context], name: :unique_index)
end
end
|