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