mirror of
https://github.com/plausible/analytics.git
synced 2024-12-26 02:55:02 +03:00
10 lines
173 B
Elixir
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
|