10 lines
177 B
Elixir
10 lines
177 B
Elixir
defmodule SsoBsn.Repo.Migrations.ClientIdTokenKid do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:oauth_clients) do
|
|
add :id_token_kid, :string
|
|
end
|
|
end
|
|
end
|