pleroma/priv/repo/migrations/20170416122418_add_avatar_o...

10 lines
167 B
Elixir
Raw Normal View History

2017-04-16 15:28:28 +02:00
defmodule Pleroma.Repo.Migrations.AddAvatarObjectToUsers do
use Ecto.Migration
def change do
alter table(:users) do
add :avatar, :map
end
end
end