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