1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-24 22:55:52 +00:00
akkoma/priv/repo/migrations/20170416122418_add_avatar_object_to_users.exs
2017-04-16 15:28:28 +02:00

9 lines
167 B
Elixir

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