feat: add oidc login using keycloak

This commit is contained in:
Moritz Böhme 2025-04-05 14:03:27 +02:00
parent 630aec22cf
commit 00d15dfd47
2 changed files with 44 additions and 1 deletions

View file

@ -0,0 +1,9 @@
defmodule Putzplan.Repo.Migrations.AddUserName do
use Ecto.Migration
def change do
alter table(:users, primary_key: false) do
add :name, :string, null: false
end
end
end