2017-09-16 11:06:55 +02:00
|
|
|
defmodule Pleroma.Repo.Migrations.AddFTSIndexToActivities do
|
|
|
|
use Ecto.Migration
|
|
|
|
@disable_ddl_transaction true
|
|
|
|
|
|
|
|
def change do
|
2019-10-08 14:16:39 +02:00
|
|
|
create(
|
|
|
|
index(:activities, ["(to_tsvector('english', data->'object'->>'content'))"],
|
|
|
|
concurrently: true,
|
|
|
|
using: :gin,
|
|
|
|
name: :activities_fts
|
|
|
|
)
|
|
|
|
)
|
2017-09-16 11:06:55 +02:00
|
|
|
end
|
|
|
|
end
|