mix phx.gen.auth Accounts User users

This commit is contained in:
2025-12-30 12:26:46 +00:00
parent 4f2ed90044
commit 9b73fcdf7a
28 changed files with 3276 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
defmodule SimpleshopTheme.Repo.Migrations.CreateUsersAuthTables do
use Ecto.Migration
def change do
create table(:users, primary_key: false) do
add :id, :binary_id, primary_key: true
add :email, :string, null: false, collate: :nocase
add :hashed_password, :string
add :confirmed_at, :utc_datetime
timestamps(type: :utc_datetime)
end
create unique_index(:users, [:email])
create table(:users_tokens, primary_key: false) do
add :id, :binary_id, primary_key: true
add :user_id, references(:users, type: :binary_id, on_delete: :delete_all), null: false
add :token, :binary, null: false, size: 32
add :context, :string, null: false
add :sent_to, :string
add :authenticated_at, :utc_datetime
timestamps(type: :utc_datetime, updated_at: false)
end
create index(:users_tokens, [:user_id])
create unique_index(:users_tokens, [:context, :token])
end
end