akkoma/priv/repo/migrations/20220916115149_ensure_mastofe_settings.exs
FloatingGhost ee2eb7752d
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Ensure rollback succeeds
2022-09-16 13:00:40 +01:00

15 lines
291 B
Elixir

defmodule Pleroma.Repo.Migrations.EnsureMastofeSettings do
use Ecto.Migration
def up do
alter table(:users) do
add_if_not_exists(:mastofe_settings, :map)
end
end
def down do
alter table(:users) do
remove_if_exists(:mastofe_settings, :map)
end
end
end