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