akkoma/priv/repo/migrations/20220916115149_ensure_mastofe_settings.exs

16 lines
291 B
Elixir
Raw Normal View History

defmodule Pleroma.Repo.Migrations.EnsureMastofeSettings do
use Ecto.Migration
2022-09-16 06:00:40 -06:00
def up do
alter table(:users) do
add_if_not_exists(:mastofe_settings, :map)
end
end
2022-09-16 06:00:40 -06:00
def down do
alter table(:users) do
remove_if_exists(:mastofe_settings, :map)
end
end
end