1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-22 14:30:16 +00:00
akkoma/priv/repo/migrations/20171024090137_drop_object_index.exs

8 lines
158 B
Elixir
Raw Normal View History

2017-10-24 10:07:21 +01:00
defmodule Pleroma.Repo.Migrations.DropObjectIndex do
use Ecto.Migration
def change do
drop_if_exists index(:objects, [:data], using: :gin)
end
end