You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
akkoma-cachapa/priv/repo/migrations/20190205114625_create_threa...

13 lines
293 B

defmodule Pleroma.Repo.Migrations.CreateThreadMutes do
use Ecto.Migration
def change do
create table(:thread_mutes) do
6 years ago
add :user, references(:users, type: :uuid, on_delete: :delete_all)
add :context, :string
end
6 years ago
create index(:thread_mutes, [:user])
end
end