blank-white-cards/apps/bwc/priv/repo/migrations/20201229053338_create_players.exs
2020-12-28 22:33:14 -08:00

11 lines
190 B
Elixir

defmodule Bwc.Repo.Migrations.CreatePlayers do
use Ecto.Migration
def change do
create table "players" do
add :username, :string
add :picture, :string
end
end
end