1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-23 22:26:49 +00:00
akkoma/priv/repo/migrations/20170416122418_add_avatar_object_to_users.exs
2019-10-08 15:16:39 +03:00

9 lines
168 B
Elixir

defmodule Pleroma.Repo.Migrations.AddAvatarObjectToUsers do
use Ecto.Migration
def change do
alter table(:users) do
add(:avatar, :map)
end
end
end