8dd83c3f87d5580d262f9a7c9d22100e983219cd
[akkoma] / repo / migrations / 20170321133335_add_following_list_to_users.exs
1 defmodule Pleroma.Repo.Migrations.AddFollowingListToUsers do
2 use Ecto.Migration
3
4 def change do
5 alter table(:users) do
6 add(:following, :map)
7 end
8 end
9 end