akkoma/priv/repo/migrations/20190506054542_add_multi_fa...

10 lines
232 B
Elixir

defmodule Pleroma.Repo.Migrations.AddMultiFactorAuthenticationSettingsToUser do
use Ecto.Migration
def change do
alter table(:users) do
add(:multi_factor_authentication_settings, :map, default: %{})
end
end
end