akkoma/priv/repo/migrations/20180829082446_add_recipients_to_and_cc_fields_to_activities.exs

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 12:16:39 +00:00
add(:recipients_to, {:array, :string})
add(:recipients_cc, {:array, :string})
end
2019-10-08 12:16:39 +00:00
create_if_not_exists(index(:activities, [:recipients_to], using: :gin))
create_if_not_exists(index(:activities, [:recipients_cc], using: :gin))
end
end