analytics/priv/repo/migrations/20231129161022_add_totp_token_to_users.exs
2023-12-05 12:40:07 +01:00

10 lines
173 B
Elixir

defmodule Plausible.Repo.Migrations.AddTotpTokenToUsers do
use Ecto.Migration
def change do
alter table(:users) do
add :totp_token, :string
end
end
end