mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-01-19 06:06:05 +01:00
11 lines
267 B
Elixir
11 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
|