1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-25 07:05:09 +00:00
akkoma/priv/repo/migrations/20180606173637_create_apid_host_extraction_index.exs

14 lines
291 B
Elixir
Raw Normal View History

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