feat: add oidc login using keycloak
This commit is contained in:
parent
630aec22cf
commit
00d15dfd47
2 changed files with 44 additions and 1 deletions
9
priv/repo/migrations/20250405114509_add_user_name.exs
Normal file
9
priv/repo/migrations/20250405114509_add_user_name.exs
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue