1
0
mirror of https://github.com/danbee/chess synced 2025-03-04 08:39:06 +00:00
chess/priv/repo/migrations/20161209105511_create_game.exs

13 lines
174 B
Elixir

defmodule Chess.Repo.Migrations.CreateGame do
use Ecto.Migration
def change do
create table(:games) do
add :board, :map
timestamps()
end
end
end