summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20211225154802_add_is_discoverable_index_to_users.exs
blob: 9f8f52b653d4cbd0cfeb9828977b7237debf17a7 (plain)
1
2
3
4
5
6
7
defmodule Pleroma.Repo.Migrations.AddIsDiscoverableIndexToUsers do
  use Ecto.Migration

  def change do
    create(index(:users, [:is_discoverable]))
  end
end