mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-02-07 14:23:40 +01:00
Indices should be more specific as the general index can lead to slower queries because postgres can't estimate the specificity of jsonb indexes very well.
7 lines
144 B
Elixir
7 lines
144 B
Elixir
defmodule Pleroma.Repo.Migrations.RemoveActivitiesIndex do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
drop index(:activities, [:data])
|
|
end
|
|
end
|