Add option to modify HTTP pool size
[akkoma] / priv / repo / migrations / 20171212163643_add_recipients_to_activities.exs
1 defmodule Pleroma.Repo.Migrations.AddRecipientsToActivities do
2 use Ecto.Migration
3
4 def change do
5 alter table(:activities) do
6 add(:recipients, {:array, :string})
7 end
8
9 create_if_not_exists(index(:activities, [:recipients], using: :gin))
10 end
11 end