blob: 315aeb6df6f02779de57a4271a8b56ce12d5590e (
plain)
1
2
3
4
5
6
7
8
9
|
defmodule Chessh.Repo.Migrations.AddAuthenticatingColumnToPlayer do
use Ecto.Migration
def change do
alter table(:players) do
add(:authentications, :integer, default: 0)
end
end
end
|