feat: add auth

This commit is contained in:
Moritz Böhme 2024-08-16 16:59:57 +02:00
parent f46feded1c
commit 2eae7d6533
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
31 changed files with 3377 additions and 0 deletions

View file

@ -0,0 +1,29 @@
defmodule Pento.Repo.Migrations.CreateUsersAuthTables do
use Ecto.Migration
def change do
execute "CREATE EXTENSION IF NOT EXISTS citext", ""
create table(:users) do
add :email, :citext, null: false
add :hashed_password, :string, null: false
add :confirmed_at, :utc_datetime
timestamps(type: :utc_datetime)
end
create unique_index(:users, [:email])
create table(:users_tokens) do
add :user_id, references(:users, on_delete: :delete_all), null: false
add :token, :binary, null: false
add :context, :string, null: false
add :sent_to, :string
timestamps(type: :utc_datetime, updated_at: false)
end
create index(:users_tokens, [:user_id])
create unique_index(:users_tokens, [:context, :token])
end
end