ash_hq/priv/repo/migrations/20230125061142_migrate_resources44.exs

24 lines
513 B
Elixir
Raw Normal View History

2023-01-25 19:52:13 +13:00
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
2023-01-25 19:59:19 +13:00
end