2021-03-11 21:12:55 -05:00
|
|
|
defmodule Cannery.Repo.Migrations.CreateUsersAuthTables do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
|
|
|
execute "CREATE EXTENSION IF NOT EXISTS citext", ""
|
|
|
|
|
|
|
|
create table(:users, primary_key: false) do
|
|
|
|
add :id, :binary_id, primary_key: true
|
|
|
|
add :email, :citext, null: false
|
|
|
|
add :hashed_password, :string, null: false
|
|
|
|
add :confirmed_at, :naive_datetime
|
2021-09-10 00:29:20 -04:00
|
|
|
add :role, :string
|
2021-03-11 21:12:55 -05:00
|
|
|
timestamps()
|
|
|
|
end
|
|
|
|
|
|
|
|
create unique_index(:users, [:email])
|
|
|
|
|
|
|
|
create table(:users_tokens, primary_key: false) do
|
|
|
|
add :id, :binary_id, primary_key: true
|
|
|
|
add :token, :binary, null: false
|
|
|
|
add :context, :string, null: false
|
|
|
|
add :sent_to, :string
|
2021-09-12 19:06:26 -04:00
|
|
|
|
|
|
|
add :user_id, references(:users, type: :binary_id, on_delete: :delete_all), null: false
|
2021-03-11 21:12:55 -05:00
|
|
|
timestamps(updated_at: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
create index(:users_tokens, [:user_id])
|
|
|
|
create unique_index(:users_tokens, [:context, :token])
|
|
|
|
end
|
|
|
|
end
|