akkoma/priv/repo/migrations/20211225154802_add_is_disco...

8 lines
161 B
Elixir
Raw Normal View History

2021-12-26 02:35:17 +00:00
defmodule Pleroma.Repo.Migrations.AddIsDiscoverableIndexToUsers do
use Ecto.Migration
def change do
create(index(:users, [:is_discoverable]))
end
end