clacks/priv/repo/migrations/20191002210352_users_add_password_hash.exs
2019-10-02 17:04:56 -04:00

10 lines
174 B
Elixir

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