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