mirror of
https://git.youjo.love/youjo/youjo-be.git
synced 2024-11-20 05:49:54 +01:00
11 lines
319 B
Elixir
11 lines
319 B
Elixir
defmodule Pleroma.Repo.Migrations.RemoveUnusedIndices do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
drop_if_exists(
|
|
index(:activities, ["(data->>'actor')", "inserted_at desc"], name: :activities_actor_index)
|
|
)
|
|
|
|
drop_if_exists(index(:objects, ["(data->'tag')"], using: :gin, name: :objects_tags))
|
|
end
|
|
end
|