summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200817120935_add_invisible_index_to_users.exs
blob: 2417d366e4c3f1a3e898c18f3676e00829d3778b (plain)
1
2
3
4
5
6
7
defmodule Pleroma.Repo.Migrations.AddInvisibleIndexToUsers do
  use Ecto.Migration

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