chessh/priv/repo/migrations/20221230102253_add_authenticating_column_to_player.exs

10 lines
203 B
Elixir
Raw Permalink Normal View History

2022-12-30 07:46:35 -05:00
defmodule Chessh.Repo.Migrations.AddAuthenticatingColumnToPlayer do
use Ecto.Migration
def change do
alter table(:players) do
add(:authentications, :integer, default: 0)
end
end
end