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

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

  def down, do: :ok
end