ash_postgres/priv/test_repo/migrations/20200910072645_add_extensions.exs
2020-10-06 01:39:47 -04:00

8 lines
261 B
Elixir

defmodule AshPostgres.TestRepo.Migrations.AddExtensions do
use Ecto.Migration
def change do
execute("CREATE EXTENSION \"uuid-ossp\";", "DROP EXTENSION \"uuid-ossp\"")
execute("CREATE EXTENSION \"pg_trgm\";", "DROP EXTENSION \"pg_trgm\"")
end
end