ash_admin/dev/repo/migrations/20201207020240_add_uuid_extension.exs

8 lines
177 B
Elixir
Raw Normal View History

2020-12-08 19:22:24 +13:00
defmodule Demo.Repo.Migrations.AddUuidExtension do
use Ecto.Migration
def change do
execute("CREATE EXTENSION \"uuid-ossp\"", "DROP EXTENSION \"uuid-ossp\"")
end
end