Packages

A library to give support of uuid_helper in database tables

Current section

Files

Jump to
uuid_helper priv repo migrations 20190610070245_add_uuid_extension.exs
Raw

priv/repo/migrations/20190610070245_add_uuid_extension.exs

defmodule UuidHelper.Repo.Migrations.AddUuidHelperExtension do
use Ecto.Migration
def up do
execute("CREATE EXTENSION IF NOT EXISTS \"uuid_helper-ossp\" WITH SCHEMA public;")
end
def down do
execute("DROP EXTENSION \"uuid_helper-ossp\";")
end
end