mirror of
https://git.pleroma.social/sjw/pleroma.git
synced 2025-01-24 21:01:07 +01:00
12 lines
267 B
Elixir
12 lines
267 B
Elixir
defmodule Pleroma.Repo.Migrations.AddRecipientsToActivities do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:activities) do
|
|
add(:recipients, {:array, :string})
|
|
end
|
|
|
|
create_if_not_exists(index(:activities, [:recipients], using: :gin))
|
|
end
|
|
end
|