ash_hq/priv/repo/migrations/20230125061142_migrate_resources44.exs
2023-01-25 01:59:19 -05:00

23 lines
513 B
Elixir

defmodule AshHq.Repo.Migrations.MigrateResources44 do
@moduledoc """
Updates resources based on their most recent snapshots.
This file was autogenerated with `mix ash_postgres.generate_migrations`
"""
use Ecto.Migration
def up do
execute("""
CREATE INDEX discord_messages_search_index ON discord_messages USING GIN((
setweight(to_tsvector('english', content), 'D')
));
""")
end
def down do
execute("""
DROP INDEX discord_messages_search_index;
""")
end
end