chessh/priv/repo/migrations/20230304031125_add_move_history.exs
2023-03-08 00:24:30 -07: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