chessh/priv/repo/migrations/20221230102253_add_authenticating_column_to_player.exs
2022-12-30 05:46:35 -07:00

10 lines
203 B
Elixir

defmodule Chessh.Repo.Migrations.AddAuthenticatingColumnToPlayer do
use Ecto.Migration
def change do
alter table(:players) do
add(:authentications, :integer, default: 0)
end
end
end