mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-01-18 21:56:04 +01:00
9 lines
179 B
Elixir
9 lines
179 B
Elixir
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
|