Add avatar objects to user, fix specs.

This commit is contained in:
Roger Braun 2017-04-16 15:28:28 +02:00
commit d7e3b72c6a
9 changed files with 60 additions and 37 deletions

View file

@ -0,0 +1,9 @@
defmodule Pleroma.Repo.Migrations.AddAvatarObjectToUsers do
use Ecto.Migration
def change do
alter table(:users) do
add :avatar, :map
end
end
end