forked from AkkomaGang/akkoma
floatingghost
911f8feb0a
Co-authored-by: FloatingGhost <hannah@coffee-and-dreams.uk> Reviewed-on: AkkomaGang/akkoma#216
9 lines
191 B
Elixir
9 lines
191 B
Elixir
defmodule Pleroma.Repo.Migrations.EnsureMastofeSettings do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:users) do
|
|
add_if_not_exists(:mastofe_settings, :map)
|
|
end
|
|
end
|
|
end
|