akkoma/priv/repo/migrations/20220916115149_ensure_masto...

16 lines
291 B
Elixir
Raw Normal View History

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