Current section
Files
Jump to
Current section
Files
priv/migrations/0-lockable_changes.exs
defmodule <%= inspect Module.concat([:Haytni, "Migrations", camelized_scope, "LockableChanges"]) %> do
use Ecto.Migration
def change(table \\ <%= inspect table %>) do
create_if_not_exists table(<%= inspect table %>) do
# NOP
end
alter table(table) do
add :locked_at, :utc_datetime, default: nil
add :failed_attempts, :integer, default: 0, null: false
add :unlock_token, :string, default: nil
end
create index(table, ~W[unlock_token]a, unique: true)
end
end