1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2024-11-17 18:49:15 +00:00

Create index on activities.local

This commit is contained in:
Egor Kislitsyn 2019-06-03 18:57:24 +07:00
parent 17a6f81f7b
commit 17004a0f1a

View file

@ -0,0 +1,7 @@
defmodule Pleroma.Repo.Migrations.AddIndexOnActivitiesLocal do
use Ecto.Migration
def change do
create(index("activities", [:local]))
end
end