summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20190603115238_add_index_on_activities_local.exs
blob: 42ea93d1f0859e2fe7e1d560144b3a2fd40b9365 (plain)
1
2
3
4
5
6
7
8
9
10
11
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Repo.Migrations.AddIndexOnActivitiesLocal do
  use Ecto.Migration

  def change do
    create_if_not_exists(index("activities", [:local]))
  end
end