11 lines
231 B
Elixir
11 lines
231 B
Elixir
defmodule SsoBsn.Repo.Migrations.MetadataForClients do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:oauth_clients) do
|
|
add :metadata, :jsonb, default: "{}", null: false
|
|
add :logo_uri, :string
|
|
end
|
|
end
|
|
end
|