1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2024-12-25 04:53:06 +00:00
akkoma/priv/repo/migrations/20170620133028_add_object_activity_index.exs

9 lines
272 B
Elixir
Raw Normal View History

2017-06-20 15:18:42 +01:00
defmodule Pleroma.Repo.Migrations.AddObjectActivityIndex do
use Ecto.Migration
def change do
2017-09-16 23:01:49 +01:00
# This was wrong, now a noop
2019-07-01 02:08:07 +01:00
# create_if_not_exists index(:objects, ["(data->'object'->>'id')", "(data->>'type')"], name: :activities_create_objects_index)
2017-06-20 15:18:42 +01:00
end
end