forked from AkkomaGang/akkoma
7 lines
162 B
Elixir
7 lines
162 B
Elixir
defmodule Pleroma.Repo.Migrations.AddUUIDExtension do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
execute("create extension if not exists \"uuid-ossp\"")
|
|
end
|
|
end
|