Current section

Files

Jump to
boruta priv boruta migrations 20241221231456_agent_credentials.ex
Raw

priv/boruta/migrations/20241221231456_agent_credentials.ex

defmodule Boruta.Migrations.AgentCredentials do
@moduledoc false
import Boruta.Config, only: [agent_token_max_ttl: 0]
defmacro __using__(_args) do
quote do
def change do
# 20241221205452_add_bind_data_to_oauth_tokens.exs
alter table(:oauth_clients) do
add :agent_token_ttl, :integer, null: false, default: agent_token_max_ttl()
end
alter table(:oauth_tokens) do
add :bind_data, :jsonb
add :bind_configuration, :jsonb
end
# 20241221232600_add_agent_token_to_oauth_tokens.exs
alter table(:oauth_tokens) do
add :agent_token, :string
end
end
end
end
end