1
0
Fork 0
mirror of https://git.pleroma.social/pleroma/pleroma.git synced 2025-03-11 06:03:22 +00:00
pleroma/priv/repo/migrations/20181201104428_add_uuid_extension.exs

8 lines
162 B
Elixir
Raw Normal View History

defmodule Pleroma.Repo.Migrations.AddUUIDExtension do
use Ecto.Migration
def change do
execute("create extension if not exists \"uuid-ossp\"")
end
end