mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-11 02:28:45 +00:00
13 lines
299 B
Elixir
13 lines
299 B
Elixir
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 index(:thread_mutes, [:user_id])
|
|
end
|
|
end
|