1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-08 08:26:48 +00:00
akkoma/priv/repo/migrations/20171130135819_add_local_index_to_user.exs

8 lines
155 B
Elixir
Raw Normal View History

2017-11-30 14:00:12 +00:00
defmodule Pleroma.Repo.Migrations.AddLocalIndexToUser do
use Ecto.Migration
def change do
2019-10-08 12:16:39 +00:00
create_if_not_exists(index(:users, [:local]))
2017-11-30 14:00:12 +00:00
end
end