defmodule Comfycamp.Repo.Migrations.OidcNonce do use Ecto.Migration def change do alter table(:oidc_codes) do add :nonce, :string end end end