mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-18 04:49:23 +00:00
10 lines
220 B
Elixir
10 lines
220 B
Elixir
defmodule Pleroma.Repo.Migrations.AddUnfollowedDmRestrictions do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:users) do
|
|
add(:accepts_direct_messages_from, :string, default: "everybody")
|
|
end
|
|
end
|
|
end
|