akkoma/priv/repo/migrations/20220108213213_add_mastofe_...

16 lines
288 B
Elixir
Raw Normal View History

2022-01-08 21:47:52 +00:00
defmodule Pleroma.Repo.Migrations.AddMastofeSettings do
use Ecto.Migration
def up do
2022-01-08 21:47:52 +00:00
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
2022-01-08 21:47:52 +00:00
end