defmodule Clacks.Repo.Migrations.UsersAddPasswordHash do
use Ecto.Migration
def change do
alter table(:users) do
add :password_hash, :string
end