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

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