2022-02-26 06:11:42 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
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
|