2018-06-06 12:13:40 -06:00
|
|
|
defmodule Pleroma.Repo.Migrations.CreateApidHostExtractionIndex do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
2024-06-18 18:05:38 -06:00
|
|
|
create(index(:activities, ["(split_part(actor, '/', 3))"], name: :activities_hosts))
|
2018-06-06 12:13:40 -06:00
|
|
|
end
|
|
|
|
end
|