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