Add changelog entry for hashtag following
[akkoma] / priv / repo / migrations / 20190506054542_add_multi_factor_authentication_settings_to_user.exs
1 defmodule Pleroma.Repo.Migrations.AddMultiFactorAuthenticationSettingsToUser do
2 use Ecto.Migration
3
4 def change do
5 alter table(:users) do
6 add(:multi_factor_authentication_settings, :map, default: %{})
7 end
8 end
9 end