defmodule Chess.Repo.Migrations.AddNameToUser do use Ecto.Migration def change do alter table("users") do add :name, :string end end end