11 lines
190 B
Elixir
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
|