live_beats/priv/repo/migrations/20211116125213_add_avatar_url_to_users.exs

11 lines
215 B
Elixir
Raw Normal View History

2021-11-16 16:58:22 +00:00
defmodule LiveBeats.Repo.Migrations.AddAvatarUrlToUsers do
use Ecto.Migration
def change do
alter table(:users) do
add :avatar_url, :string
add :external_homepage_url, :string
end
end
end