1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-15 03:28:47 +00:00
akkoma/priv/repo/migrations/20180606173637_create_apid_host_extraction_index.exs

9 lines
255 B
Elixir
Raw Normal View History

2018-06-06 18:13:40 +00:00
defmodule Pleroma.Repo.Migrations.CreateApidHostExtractionIndex do
use Ecto.Migration
@disable_ddl_transaction true
def change do
create index(:activities, ["(split_part(actor, '/', 3))"], concurrently: true, name: :activities_hosts)
end
end