summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20181201104428_add_uuid_extension.exs
blob: 99fcb957c796537328354fd7578aba3ac1f25a3a (plain)
1
2
3
4
5
6
7
8
9
defmodule Pleroma.Repo.Migrations.AddUUIDExtension do
  use Ecto.Migration

  def up do
    execute("create extension if not exists \"uuid-ossp\"")
  end

  def down, do: :ok
end