1
0
Fork 0
forked from mirrors/akkoma
akkoma/priv/repo/migrations/20200817120935_add_invisible_index_to_users.exs

8 lines
150 B
Elixir

defmodule Pleroma.Repo.Migrations.AddInvisibleIndexToUsers do
use Ecto.Migration
def change do
create(index(:users, [:invisible]))
end
end