2022-02-25 23:11:42 -07:00
|
|
|
# Pleroma: A lightweight social networking server
|
2023-01-01 04:11:47 -07:00
|
|
|
# Copyright © 2017-2023 Pleroma Authors <https://pleroma.social/>
|
2022-02-25 23:11:42 -07:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-06-20 08:18:42 -06:00
|
|
|
defmodule Pleroma.Repo.Migrations.AddObjectActivityIndex do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
2017-09-16 16:01:49 -06:00
|
|
|
# This was wrong, now a noop
|
2019-06-30 19:08:07 -06:00
|
|
|
# create_if_not_exists index(:objects, ["(data->'object'->>'id')", "(data->>'type')"], name: :activities_create_objects_index)
|
2017-06-20 08:18:42 -06:00
|
|
|
end
|
|
|
|
end
|