added weekdays enum and week_start_at for user records

This commit is contained in:
Adam Piontek 2021-03-12 11:15:22 -05:00
commit 4031640e1d
4 changed files with 11 additions and 0 deletions

View file

@ -8,6 +8,7 @@ defmodule Shift73k.Repo.Migrations.CreateUsersAuthTables do
add(:id, :binary_id, primary_key: true)
add(:email, :citext, null: false)
add(:hashed_password, :string, null: false)
add(:week_start_at, :integer, null: false)
add(:confirmed_at, :naive_datetime)
timestamps()
end