chessh/priv/repo/migrations/20230304031125_add_move_history.exs

10 lines
178 B
Elixir
Raw Permalink Normal View History

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