20 lines
424 B
Elixir
20 lines
424 B
Elixir
|
defmodule Chessh.Repo.Migrations.CreateGames do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
create table(:games) do
|
||
|
add(:fen, :string)
|
||
|
add(:moves, :integer, default: 0)
|
||
|
|
||
|
add(:turn, :string)
|
||
|
add(:winner, :string)
|
||
|
add(:status, :string)
|
||
|
|
||
|
add(:light_player_id, references(:players), null: true)
|
||
|
add(:dark_player_id, references(:players), null: true)
|
||
|
|
||
|
timestamps()
|
||
|
end
|
||
|
end
|
||
|
end
|