blob: c17da8309ffbe218d3165aa16a9d391c4c9a38dd (
plain)
1
2
3
4
5
6
7
8
|
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
|