akkoma/priv/repo/migrations/20170321133335_add_followin...

10 lines
172 B
Elixir

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