Merge remote-tracking branch 'origin/patch/readd-mastofe' into develop

This commit is contained in:
FloatingGhost 2022-01-08 21:48:10 +00:00
commit e3214cdfe3
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
defmodule Pleroma.Repo.Migrations.AddMastofeSettings do
use Ecto.Migration
def change do
alter table(:users) do
add_if_not_exists(:mastofe_settings, :map)
end
end
end