summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20170321133335_add_following_list_to_users.exs
blob: 8dd83c3f87d5580d262f9a7c9d22100e983219cd (plain)
1
2
3
4
5
6
7
8
9
defmodule Pleroma.Repo.Migrations.AddFollowingListToUsers do
  use Ecto.Migration

  def change do
    alter table(:users) do
      add(:following, :map)
    end
  end
end