chessh/priv/repo/migrations/20230304031125_add_move_history.exs
Lizzy Hunt a1f01d4a2b
Move history (#18)
* store move history

* Add previous game viewer
2023-03-13 14:13:11 -06:00

10 lines
178 B
Elixir

defmodule Chessh.Repo.Migrations.AddMoveHistory do
use Ecto.Migration
def change do
alter table(:games) do
add(:game_moves, :string, size: 1024)
end
end
end