Current section

Files

Jump to
boruta priv repo migrations 20241209092043_add_tx_code_to_tokens.exs
Raw

priv/repo/migrations/20241209092043_add_tx_code_to_tokens.exs

defmodule Boruta.Repo.Migrations.AddTxCodeToTokens do
use Ecto.Migration
def change do
alter table(:oauth_tokens) do
add :tx_code, :string
end
alter table(:oauth_clients) do
add :enforce_tx_code, :boolean, null: false, default: false
end
end
end