2017-12-12 17:07:14 +00:00
|
|
|
defmodule Pleroma.Repo.Migrations.AddRecipientsToActivities do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
|
|
|
alter table(:activities) do
|
2019-10-08 12:16:39 +00:00
|
|
|
add(:recipients, {:array, :string})
|
2017-12-12 17:07:14 +00:00
|
|
|
end
|
|
|
|
|
2019-10-08 12:16:39 +00:00
|
|
|
create_if_not_exists(index(:activities, [:recipients], using: :gin))
|
2017-12-12 17:07:14 +00:00
|
|
|
end
|
|
|
|
end
|