2021-03-05 19:23:32 -05:00
|
|
|
defmodule Shift73k.Repo.Migrations.CreateUsersAuthTables do
|
2020-09-12 20:07:02 -04:00
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
2021-02-24 07:49:39 -05:00
|
|
|
execute("CREATE EXTENSION IF NOT EXISTS citext", "")
|
2020-09-12 20:07:02 -04:00
|
|
|
|
2021-03-05 12:59:41 -05:00
|
|
|
create table(:users, primary_key: false) do
|
2022-08-14 09:16:58 -04:00
|
|
|
add :id, :binary_id, primary_key: true
|
|
|
|
add :email, :citext, null: false
|
|
|
|
add :hashed_password, :string, null: false
|
|
|
|
add :role, :string, null: false
|
|
|
|
add :confirmed_at, :naive_datetime
|
|
|
|
add :week_start_at, :string, null: false
|
|
|
|
add :calendar_slug, :string, null: false
|
2020-09-12 20:07:02 -04:00
|
|
|
timestamps()
|
|
|
|
end
|
|
|
|
|
2022-08-14 09:16:58 -04:00
|
|
|
create unique_index(:users, [:email, :calendar_slug])
|
2020-09-12 20:07:02 -04:00
|
|
|
|
2021-03-05 12:59:41 -05:00
|
|
|
create table(:users_tokens, primary_key: false) do
|
2022-08-14 09:16:58 -04:00
|
|
|
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
|
|
|
|
add :context, :string, null: false
|
|
|
|
add :sent_to, :string
|
2020-09-12 20:07:02 -04:00
|
|
|
timestamps(updated_at: false)
|
|
|
|
end
|
|
|
|
|
2022-08-14 09:16:58 -04:00
|
|
|
create index(:users_tokens, [:user_id])
|
|
|
|
create unique_index(:users_tokens, [:context, :token])
|
2020-09-12 20:07:02 -04:00
|
|
|
end
|
|
|
|
end
|