All modules, configs, paths, and references updated. 836 tests pass, zero warnings. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
31 lines
949 B
Elixir
31 lines
949 B
Elixir
defmodule Berrypod.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
|