pleroma/priv/repo/migrations/20180829082446_add_recipien...

14 lines
407 B
Elixir
Raw Normal View History

defmodule Pleroma.Repo.Migrations.AddRecipientsToAndCcFieldsToActivities do
use Ecto.Migration
def change do
alter table(:activities) do
2019-10-08 14:16:39 +02:00
add(:recipients_to, {:array, :string})
add(:recipients_cc, {:array, :string})
end
2019-10-08 14:16:39 +02:00
create_if_not_exists(index(:activities, [:recipients_to], using: :gin))
create_if_not_exists(index(:activities, [:recipients_cc], using: :gin))
end
end