2022-02-25 08:15:46 -08:00
|
|
|
defmodule Pleroma.Repo.Migrations.AddActivityAssignedAccountIndex do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
|
|
|
create_if_not_exists(
|
2024-06-23 14:35:05 -07:00
|
|
|
index(:activities, ["(data->>'assigned_account')"],
|
|
|
|
name: :activities_assigned_account_index
|
|
|
|
)
|
2022-02-25 08:15:46 -08:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|