mirror of
https://git.pleroma.social/sjw/pleroma.git
synced 2024-12-28 13:35:12 +01:00
9 lines
285 B
Elixir
9 lines
285 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
|