mirror of
https://git.rape.pet/ulith/amputoma.git
synced 2025-02-25 06:03:59 +01:00
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
|