ash_postgres/priv/test_repo/migrations/20200910072645_add_extensions.exs

8 lines
186 B
Elixir
Raw Normal View History

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