summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20210416051708_remove_mastofe_settings_from_users.exs
blob: a8d7306bd9677e02a051c4804272ff8fb3afece2 (plain)
1
2
3
4
5
6
7
8
9
defmodule Pleroma.Repo.Migrations.RemoveMastofeSettingsFromUsers do
  use Ecto.Migration

  def change do
    alter table(:users) do
      remove_if_exists(:mastofe_settings, :map)
    end
  end
end