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

Add index to objects.

This commit is contained in:
Roger Braun 2017-03-30 18:06:43 +02:00
parent 73df2f8e5e
commit 40eb0e4c24

View file

@ -0,0 +1,7 @@
defmodule Pleroma.Repo.Migrations.AddIndexToObjects do
use Ecto.Migration
def change do
create index(:objects, [:data], using: :gin)
end
end