From: FloatingGhost Date: Sat, 8 Jan 2022 21:47:52 +0000 (+0000) Subject: re-add mastofe_settings column X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=d884087e7c66be0cf08341a3179c1c5e8c6e1def;hp=0d012ebea1dc21617c9c96b75bbf5d37aa4f0f8a;p=akkoma re-add mastofe_settings column --- diff --git a/priv/repo/migrations/20220108213213_add_mastofe_settings.exs b/priv/repo/migrations/20220108213213_add_mastofe_settings.exs new file mode 100644 index 000000000..1046c2894 --- /dev/null +++ b/priv/repo/migrations/20220108213213_add_mastofe_settings.exs @@ -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