mobilizon.chapril.org-mobil.../priv/repo/migrations/20180530125159_add_avatar_a...

18 lines
312 B
Elixir
Raw Normal View History

defmodule Eventos.Repo.Migrations.AddAvatarAndBannerToActor do
use Ecto.Migration
def up do
alter table(:actors) do
add :avatar_url, :string
add :banner_url, :string
end
end
def down do
alter table(:actors) do
remove :avatar_url
remove :banner_url
end
end
end