clacks/priv/repo/migrations/20191002210352_users_add_pa...

10 lines
174 B
Elixir
Raw Normal View History

2019-10-02 21:04:56 +00:00
defmodule Clacks.Repo.Migrations.UsersAddPasswordHash do
use Ecto.Migration
def change do
alter table(:users) do
add :password_hash, :string
end
end
end