ash_postgres/priv/test_repo/migrations/20200910072645_add_extensions.exs
2020-09-10 20:26:47 -04:00

7 lines
186 B
Elixir

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