ash_admin/dev/repo/migrations/20201207020240_add_uuid_extension.exs
Zach Daniel 53e0d5b4ef WIP
2020-12-08 01:22:24 -05:00

7 lines
177 B
Elixir

defmodule Demo.Repo.Migrations.AddUuidExtension do
use Ecto.Migration
def change do
execute("CREATE EXTENSION \"uuid-ossp\"", "DROP EXTENSION \"uuid-ossp\"")
end
end