1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2024-12-20 16:32:27 +00:00
akkoma/priv/repo/migrations/20171130135819_add_local_index_to_user.exs
2017-11-30 15:00:12 +01:00

8 lines
140 B
Elixir

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