defmodule Potion.Repo.Migrations.CreateUserAuthTables do use Ecto.Migration def change do execute "CREATE EXTENSION IF NOT EXISTS citext", "" create table(:user) 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(:user, [:email]) create table(:user_tokens) do add :user_id, references(:user, 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(:user_tokens, [:user_id]) create unique_index(:user_tokens, [:context, :token]) end end