Hash : bc88a347 Author : Thomas de Grivel Date : 2021-12-28T08:46:11
Download
1 2 3 4 5 6 7 8 9 10
defmodule Kmxgit.Repo.Migrations.AddOtpToUsers do use Ecto.Migration def change do alter table(:users) do add :otp_last, :integer, null: false, default: 0 add :otp_secret, :string end end end