1
0
mirror of https://github.com/danbee/chess synced 2025-03-04 08:39:06 +00:00
chess/priv/repo/migrations/20180302195534_add_name_to_user.exs
2018-03-03 20:24:32 -05:00

10 lines
158 B
Elixir

defmodule Chess.Repo.Migrations.AddNameToUser do
use Ecto.Migration
def change do
alter table("users") do
add :name, :string
end
end
end