oauth/oidc

This commit is contained in:
bluepython508
2023-11-07 19:35:03 +00:00
parent a0fc306df1
commit 54db8727b0
20 changed files with 670 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
defmodule SsoBsn.Repo.Migrations.UserLastLogin do
use Ecto.Migration
def change do
alter table(:users) do
add :last_login_at, :utc_datetime_usec
end
end
end