summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20230304031125_add_move_history.exs
blob: ce361b64349f05229e8649d0e0ff42b4c58d9338 (plain)
1
2
3
4
5
6
7
8
9
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