15 lines
328 B
Elixir
15 lines
328 B
Elixir
|
defmodule Comfycamp.Repo.Migrations.CreateOidcApps do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
create table(:oidc_apps) do
|
||
|
add :name, :string
|
||
|
add :client_id, :string
|
||
|
add :client_secret, :string
|
||
|
add :enabled, :boolean, default: false, null: false
|
||
|
|
||
|
timestamps(type: :utc_datetime)
|
||
|
end
|
||
|
end
|
||
|
end
|