Ensure mastofe settings exists
ci/woodpecker/push/woodpecker Pipeline is pending Details
ci/woodpecker/pr/woodpecker Pipeline is pending Details

This commit is contained in:
FloatingGhost 2022-09-16 12:52:18 +01:00
parent f21d86cb2a
commit dde8920e97
1 changed files with 9 additions and 0 deletions

View File

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