summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20230128032207_add_last_move_to_game.exs
blob: db6199d8eefc522204a8ea896cb68dca3f94f10c (plain)
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