mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-02 14:44:13 +00:00
12 lines
265 B
Elixir
12 lines
265 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
|