1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-25 15:09:34 +00:00
akkoma/priv/repo/migrations/20170912114248_add_context_index.exs

12 lines
235 B
Elixir
Raw Normal View History

2017-09-12 13:48:48 +02:00
defmodule Pleroma.Repo.Migrations.AddContextIndex do
use Ecto.Migration
def change do
2019-10-08 15:16:39 +03:00
create(
index(:activities, ["(data->>'type')", "(data->>'context')"],
name: :activities_context_index
2019-10-08 15:16:39 +03:00
)
)
2017-09-12 13:48:48 +02:00
end
end