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