1
0
mirror of https://github.com/danbee/chess synced 2026-06-22 05:42:22 +00:00
chess/priv/repo/migrations/20180407190333_add_state_to_game.exs

10 lines
160 B
Elixir

defmodule Chess.Repo.Migrations.AddStateToGame do
use Ecto.Migration
def change do
alter table("games") do
add :state, :string
end
end
end