Remove MastoFE settings from users table

This commit is contained in:
Sean King 2021-04-15 23:33:24 -06:00
commit ca79aab0bf
No known key found for this signature in database
GPG key ID: 510C52BACD6E7257
3 changed files with 9 additions and 11 deletions

View file

@ -0,0 +1,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