1
0
mirror of https://github.com/danbee/chess synced 2025-03-04 08:39:06 +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