mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-01 14:21:10 +00:00
15 lines
329 B
Elixir
15 lines
329 B
Elixir
defmodule Pleroma.Repo.Migrations.AddFTSIndexToActivities do
|
|
use Ecto.Migration
|
|
@disable_ddl_transaction true
|
|
|
|
def change do
|
|
create(
|
|
index(:activities, ["(to_tsvector('english', data->'object'->>'content'))"],
|
|
concurrently: true,
|
|
using: :gin,
|
|
name: :activities_fts
|
|
)
|
|
)
|
|
end
|
|
end
|