1 2 3 4 5 6 7 8 9
defmodule Chessh.Repo.Migrations.AddLastMoveToGame do use Ecto.Migration def change do alter table(:games) do add(:last_move, :string, null: true) end end end